tristian2
unread,Jun 20, 2011, 9:04:59 AM6/20/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Visualization API
hi all,
i need to display three gauges next to each other. these three gauges
have slighly different properties so i cant use
var chartHigh = new
google.visualization.Gauge(document.getElementById('chart_divHigh'));
var optionsHigh = { width: 200, height: 60, redFrom: 0, redTo:
10,
yellowFrom: 10, yellowTo: 20, greenFrom: 60, greenTo: 100,
minorTicks: 5
/* i need these for the other two guages
[width: 200, height: 60, redFrom: 0, redTo: 10,
yellowFrom: 10, yellowTo: 20, greenFrom: 80, greenTo: 100,
minorTicks: 5];,
[width: 200, height: 60, redFrom: 0, redTo: 10,
yellowFrom: 10, yellowTo: 20, greenFrom: 60, greenTo: 100,
minorTicks: 5];
*/
};
chartHigh.draw(dataHigh, optionsHigh);
i can simply draw three different gauges on the screen, but these
display in blocks, not inline. i need the three charts to display
alongside each other.
any ideas how to do this?
thanks
tristian