Thanks a lot - it works with corechart:

<html>
  <head>
    <script type="text/javascript" 
src="https://www.google.com/jsapi";></script>
    <script type="text/javascript">
    google.load('visualization', '1', {'packages' : ['corechart']});
    
    google.setOnLoadCallback(drawChart);

    function drawChart() {
      var dataTable = new google.visualization.DataTable();
      dataTable.addColumn('string', 'Year');
      dataTable.addColumn('number', 'Sales');
      // A column for custom tooltip content
      dataTable.addColumn({type: 'string', role: 'tooltip'});
      dataTable.addRows([
        ['2010', 600, '$600K in our first year!'],
        ['2011', 1500, 'Sunspot activity made this our best year ever!'],
        ['2012', 800, '$800K in 2012.'],
        ['2013', 1000, '$1M in sales last year.']
      ]);

      var options = { legend: 'none',
              tooltip: {isHtml: true},
      };
      var chart = new 
google.visualization.ColumnChart(document.getElementById('traceChart'));
      chart.draw(dataTable, options);
    }
    </script>
  </head>
  <body style="font-family: Arial;border: 0 none;">
    <div id="traceChart" style="width: 1200px; height: 800px;"></div>
  </body>
</html>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to