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);
My issue is that when the legend is generated, the text "(count)" is
appended to every entry. Is there a way to prevent this?
One caveat is that I cannot do the standard:
var data = new google.visualization.DataTable();
data.addColumn ([ array Here ])
Thanks for any help.
-david
--
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/914ac3e4-93aa-455c-b67f-db74526cd34f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.