I am using jqplot chart to draw chart it works fine, To zoom chart i am using cursor and by that cursor i can zoom but i am trying to zoom that from button that is outside of chart. Since we are reset the zoomed chart from external button like this $('#reset').click(function() {plot1.resetZoom() }); so is it possible to do zoom chart from external button. Please advice...

Thanks in advance...

link|improve this question
feedback

1 Answer

Hi Swan i think you need to use this function Enable plot Zooming hope it will helpful for you. All the best

Again jqPlot is an awesome javascript graphing library, supporting loads of cool features. Except clickable bar charts. Here is a plugin which allows you to capture click events for bar charts.

$.jqplot('Graph', data, {
barClickable: {
    onClick: function(i, j, data){
alert("Clicked series: " + i + ", data point: " + j + ", data: " + data);
    }
}});
link|improve this answer
you are correct we can enable it by zoom = false but it zooms inside chart but i want to zoom it from outside button... check my question. – user1140574 Feb 23 at 12:27
feedback

Your Answer

 
or
required, but never shown