Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using current version of JFreechart, plot is XYPlot type.

After zooming-in xyplot with

zoomablePlot.zoomDomainAxis(...);
zoomablePlot.zoomRangeAxis(...);

I would like to get minimal visible value on domain axis. The DataRange object

//plot is XYPlot type
Range dataRange = plot.getDataRange(...);

contains only 'global' minimum value, not currently displayed.

share|improve this question
1  
What classes/library do you use? Please provide more info. – Thomas Jul 13 '11 at 15:01
I am sorry, I thought that tags will be cleared enough. – David Warsow Jul 14 '11 at 6:34

1 Answer

The following should give you what you want.

plot.getRangeAxis().getLowerBound();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.