Hello guys,

I want to set "chdlp=bv" but i don't know where!

My chart works like this:


<html>
  <head>
    <script type="text/javascript" src="https://www.google.com/
jsapi"></script>
     </head>
<body>
<table>
<tr>

    <script type='text/javascript'>
      google.load('visualization', '1', {packages:['corechart']});
      google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = new google.visualization.DataTable();
        data.addColumn('string', 'Date-Time');
        data.addColumn('number', 'Value1');
        data.addColumn('number', 'Value2');
        data.addRows([
['31-00',15131,13660],
['02-00',18059,16659],
['01-00',16478,15551],
['03-15',58972,57581],
['29-00',22099,21259],
['30-00',15679,14819],
['03-16',61501,59771],
['03-17',63691,62066]
        ]);
        var options = {
          width: 800, height: 600,
          title: 'HLR Performance',
          legend : 'top'
        };

        var chart = new
google.visualization.LineChart(document.getElementById('chart_div_1'));
        chart.draw(data, options);
      }
    </script>
</tr>
</table>
</body>
</html>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to