javascript - How does one use Flot's selection graph with time on the xaxis? -
update: here fiddle demonstrate: http://jsfiddle.net/msybn/1/ i using flot's selection graph: http://www.flotcharts.org/flot/examples/selection/index.html i use time xaxis, when drag zoom in smaller time interval graph goes blank. in working examples xaxis time based in years, numerically easy plot (i.e 1994.5 half way through 1994). i have month year on xaxis such as: 'jul 2012', 'jan 2013', 'jul 2013' , on in 6 month intervals. using in conjuntion crosshair plugin , time plugin. the zooming wont work. get's milli sec values correctly cant set graph them. code below, can help? imported scripts: jquery.flot.js jquery.flot.time.js jquery.flot.crosshair.js jquery.flot.selection.js $(function() { //define datasets var datasets = { "blah": { label: "blah", key: "blah", data: [] }, //etc }; $.each(datasets, function(...