I see this link to use google chart api to combine multiple line charts
What is the recommended way to have dates on the bottom line, since it seems that each line in the chart has the same level of space, so if I have charts where their dates and values โโare, I want the correct interval to be between (1 day difference must differ from data points at a distance of 1 month).
It looks like you entered dates in the first column so that each row is at the same horizontal distance from each other.
EDIT : I added the code below
function drawChart() { var data = new google.visualization.DataTable(); data.addColumn('date', 'Date'); data.addColumn('number', 'Target'); data.addColumn('number', 'Actual'); data.addRows(9); data.setValue(0, 0, new Date(2010, 1, 1)); data.setValue(0, 1, 215); data.setValue(0, 2, 215); data.setValue(1, 0, new Date(2010, 2, 1)); data.setValue(1, 2, 213); data.setValue(2, 0, new Date(2010, 2, 4)); data.setValue(2, 2, 213); data.setValue(3, 0, new Date(2010, 2, 8)); data.setValue(3, 2, 213); data.setValue(4, 0, new Date(2010, 3, 1)); data.setValue(4, 2, 220); data.setValue(5, 0, new Date(2010, 4, 1)); data.setValue(5, 2, 190);