I want to draw an area chart, with all y-axis values as 0.

example:

data.addColumn('string', 'Year');
data.addColumn('number', 'Sales');
data.addRows([
          ['2004', 0],
          ['2005', 0],
          ['2006', 0],
          ['2007', 0]
        ]);

When the graph is drawn, the minimum value appears as '-1'  , I want
the Y-axis minimum value to be 0. How can one do this  ??

-- 
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.

Reply via email to