You need to give it an array of strings, not a single string with
comma separated elements. So instead of
google.load('visualization', '1', { packages:
['intensitymap,table,geomap'], "callback": myCallBack });
Try:
google.load('visualization', '1', { packages:
['intensitymap','table','geomap'], "callback": myCallBack });
Each element in the array is a string (in this case, the packages
array has length 3).
That should fix the problem.
hope that helped,
-- N
--
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.