I am confused as to which link I am supposed to use.  The main Quick Start 
page shows one link, yet the individual charts documentation show another.

Within the html file:

   1. <script type="text/javascript" src="
   *https://www.gstatic.com/charts/loader.js*";></script>
   2. <script type="text/javascript" src="*https://www.google.com/jsapi*
   "></script>
   

I also see two different load links and am confused as to which should be 
used, within my js functions.

   1. google.charts.load('current', {packages: ['corechart']});
   2. google.load('visualization', '1', {'packages':['corechart']});
   

I am creating and displaying Area charts:

        var chart102OneYrGooglized = 
google.visualization.arrayToDataTable(chart102OneYr.getChartArray());
        // Instantiate and draw the chart, passing in global options.
        var googleChart102OneYr = new 
google.visualization.ComboChart($('#metric102ChartOneYr')[0]);
        google.visualization.events.addListener(googleChart102OneYr, 
'ready', placeOverlay.bind(googleChart102OneYr, chart102OneYrGooglized, 
chart102OneYr));
        googleChart102OneYr.draw(chart102OneYrGooglized, 
globalChartOptions);

Thank you for any clarification on which links should be used.

-- 
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 https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/3a8dac90-3057-4582-a887-6d8dd0c5c20f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to