Any chance of this being considered as a feature request to implement
for the next revision?
Thanks!
From looking at the code, it seems like you'll need to set the
detailLevels and zoomLevels arrays to match your data range. If you
look at the annotatedtimeline.js, it sets them with values like the
following:
this.m("detailLevels",["from:0","to:"+182*h,"interval:"+1*h]);
this.m("detailLevels",["from:"+(182*h
+1),"to:"+1825*h,"interval:"+7*h]);
this.m("zoomlevels",["text:1m","value:"+30*h]);
this.m("zoomlevels",["text:3m","value:"+91*h]);
If there were some way to get at that object and set/modify them...