Configuring Google Annotated Timeline
I have a working Google Annotated Timeline (see docs at http://code.google.com/apis/chart/interactive/docs/gallery/annotatedtimeline.html). I would like to explicitly set a start_d
Solution 1:
You should merge the options in a single hash:
chart.draw(data, {'displayAnnotations': true,
'zoomStartTime': new Date(2011, 6, 26),
'zoomEndTime': new Date(2011,6,30)
}
);
Post a Comment for "Configuring Google Annotated Timeline"