Search found 2 matches

by shil
Fri Jul 24, 2009 6:47 pm
Forum: JFreeChart
Topic: AutoRange and Zoom
Replies: 17
Views: 34697

Re: AutoRange and Zoom

Hi skunk, Thanks for your tips. I am able to control unzoom behavior by overriding restoreAutoDomainBounds() in CharPanel. public class MyChartPanel extends ChartPanel { public MyChartPanel(JFreeChart chart) { super(chart); } @Override public void restoreAutoDomainBounds() { super.restoreAutoDomainB...
by shil
Fri Jun 26, 2009 12:23 am
Forum: JFreeChart
Topic: AutoRange and Zoom
Replies: 17
Views: 34697

Re: AutoRange and Zoom

I see this is stil an issue with version 1.0.13. I wonder is there a way we can override this "unzoom" behavior so that it will set the range as "what is before zoom". Basically what jfree method is called when you unzoom or drag the mouse up?