I have a simple line chart that should display values between 0 and 5.
var chart = new
google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, {width: 800, height: 200, pointSize: 6,
lineWidth: 3, vAxis:{minValue: 0, maxValue: 5}});
Right now my chart shows vAxis gridlines at 0.0, 1.5, 3.0, 4.5, and
6.0. None of my values are less than 0 or greater than 5.
How do I get the chart to display vAxis lines at 0, 1, 2, 3, 4, 5 and
have it stop at 5 instead of going up to 6?
--
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.