Hi,
Can you please help me with the dateFormat specifier for Google Visualisation APIs so that I can display milliseconds.
Thanks in advance!
Hi,
Can you please help me with the dateFormat specifier for Google Visualisation APIs so that I can display milliseconds.
Thanks in advance!
To set the milliseconds of a Date instance in javascript, use the setMilliseconds() method:
x = new Date(2009, 7, 6, 20, 10, 10);
x.setMilliseconds(10);
I suspect that Google Annotated Timeline will show values in milliseconds, though.