Here's a newbie question, but how do I use dates for the x-axis in a Google Charts line chart?
When I use new Date( ... ) I get the error message "Uncaught Error: Date and datetime column types are not supported"
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Datum','Person1','Person2','Person3'],
[new Date(2012, 12, 19, 0, 0, 0),'5072.0537223002','5072.0537223002','5074.2809630567'],
[new Date(2012, 12, 20, 0, 0, 0),'5072.0537223002','5072.0537223002','5074.2809630567'],
]);
var options = {};
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
(Using strings evenly spaces across the x-axis would be acceptable, but when I try with strings "Data column(s) for axis #0 cannot be of type string")