Closed christophepersoz closed 5 years ago
Found by using the timeline in milliseconds unit and using minorLabels
and majorLabels
options to generate frame en TC values on axis.
/* in options {} */
format: {
minorLabels: function(date, scale, step) {
return get_frame_from_ms( new Date(date).getTime() );
},
majorLabels: function(date, scale, step) {
return get_TC_from_ms( new Date(date).getTime() );
}
},
/* others options here below */
Perfect lib! Thanks
I like the way your library is working, but I’m looking for a much smaller timerange event than days, months years. Do you think that can be easily done or implement? - maybe I can help on this.
Thanks!