I have a multi-series flot graph which is plotted in a canvas of width and height. When the flot graph has multi series it tries to compress within the height and width of the canvas and the flot graph wont't be seen clearly.
In order to obtain a clear graph with all the series visible with all the nodes I want to introduce a scroll bar in such a way that the scroll bar fits only few series at first then by scrolling the rest of the series should be seen .
How do i do it?
Put it in a div:
CSS:
WIth the overflow attribute, you can control where a scrollbar should be.
If you don't want to use the panning and zooming plugin (as @MF82 suggests) and want a true scroll bar, just wrap the container target div in another div:
Fiddle example here.
I think you can pass some options to Flot (with Navigation plugin), such as:
where panRange means:
Navigation example