Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JFreeChart disable zooming

Is there an easy way to disable zoom in/out feature for XYPlot which is drawn in ChartComposite ? Overriding the zoom methods for XYPlot will be a solution but I wonder if there is an easy way..

like image 591
penguru Avatar asked Oct 30 '09 12:10

penguru


1 Answers

Try

getYourChartPanel().setDomainZoomable(false);
getYourChartPanel().setRangeZoomable(false);

See setDomainZoomable() and setRangeZoomable()

like image 91
Brian Agnew Avatar answered Sep 28 '22 15:09

Brian Agnew