If the first column in your DataTable is of type 'number' or type 'date' 
and you have the 'strictFirstColumnType' option set to true, you will have 
a continuous axis for your line chart:

var data = new google.visualization.DataTable();
data.addColumn('date', 'Date');
data.addColumn('number', 'Value');
data.addRow(new Date(1, 5, 2011), 100);
.
.
.
chart.draw(data, {
    strictFirstColumnType: true
});

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/yP2Ugoctg7oJ.
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