Hi,
inspired by the following example, http://jsfiddle.net/api/post/jquery/1.12/?example=second-timechart-that-displays-the-preview-of-the-whole-data-range.
I just modified the graph type to get a line.
Then, to get more granularity and precision, I added a custom toolbar like this:
toolbar : {
location : 'outside',
displayUnit : false,
export : false,
logScale : false,
zoomOut : false,
periods : [{
displayAnchor : "newestData",
displayPeriod : '1 d',
displayUnit : '5 m',
name : 'Last day'
}, {
displayAnchor : "newestData",
displayPeriod : '7 d',
displayUnit : '30 m',
name : 'Last week'
}, {
displayAnchor : "newestData",
displayPeriod : '1 M',
displayUnit : '2 h',
name : 'Last month'
}, {
displayAnchor : "newestData",
displayPeriod : '1 Y',
displayUnit : '1 d',
name : 'Last year'
}]
}
My problem, when I use the preview to navigate the graph, the curve is "smoothed".
How can I "force" the units/periods in the graph as in the toolbar ?
Thanks for your help 