Hi All,

First off, I am quite the newbie to google visualization, so please excuse 
the density of this post. 

I am generating a histogram from an array of raw data:
var arr = [];
                arr.push(['Item1', 'Item2', ... ]);
                arr.push([ -3000, null, ...  ]);
                arr.push([ 5000, null, ... ]);
                ... etc.

var data = google.visualization.arrayToDataTable(arr);
var options = {
                    title: 'My Time Histogram'


var chart = new 
google.visualization.Histogram(document.getElementById('chart_div'));
chart.draw(data, options);

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/928ebdf6-4764-4805-8f23-58e44aa878d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to