I am trying to use google charts, 'Annotated Time Line'.
On the column I want to use numbers, which
dataTable.addColumn({ type: 'number', id: 'Start' });
dataTable.addColumn({ type: 'number', id: 'End' });
But the problem is, still the number is taken as milli second, hence after each 60 seconds, clock is set back to 0 (1 minute) and then it continues. I want it to show as 60, 65, 70 and so on instead of 0, 5, 10 (after each minute).
Current
Display as
Is there a quick way to do this?
EDIT: Link to JSFIDDLE (with original data) with simplified data: jsfiddle