Try this instead:

var data = google.visualization.DataTable();
data.addColumn('date', 'Date');
data.addColumn('string', 'State');
data.addColumn('number', 'Unemployment');
data.addRows([
    [new Date(2008, 1, 1), "US-AK", 120000],
    [new Date(2008, 2, 1), "US-AK", 130000],
    [new Date(2008, 3, 1), "US-AK", 140000],
    [new Date(2008, 4, 1), "US-AK", 150000],
    [new Date(2008, 5, 1), "US-AK", 160000],
    [new Date(2008, 6, 1), "US-AK", 170000],
    [new Date(2008, 7, 1), "US-AK", 180000],
    [new Date(2008, 8, 1), "US-AK", 190000]
]); 

-- 
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/-/dS73yTFxN-0J.
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