I think, but I am not sure that you can not draw a scatter and a line chart(for example) in the same js script. I usually make an external .js file witch contains the script, bond it to a div where to draw it and in the HTML i load the JSAPI first and then I load the .js witch contains my script to generate the chart. So if you have 1 or 10 graphs, every graph is in separate js file and you load them one by one.
The Warning I think it is referring to draw a scatter+other chart in the same js . For example, I can make a Table(witch is considered chart) and based on the data from the Table I can draw also a Line/Bar/etc. chart and draw them "in the same time". But also I can make a Table in one .js file and open another .js file using the same data and draw a Line chart. Here is a snippet from one of my HTML files : <script type="text/javascript" src="https://www.google.com/jsapi"></ script> <script type="text/javascript" src="js/month_graph.js"></script> <script type="text/javascript" src="visual/visualSmallTables.js"></ script> So I load the JSAPI first and then one by one the charts. I will try to make a scatter+other chart in the same page also. Hope this helps and hope that I am right :) -- 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.
