Search found 2 matches

by autorange
Fri Aug 24, 2012 5:53 pm
Forum: JFreeChart - Stockmarket
Topic: Zooming in x, autoranging in y
Replies: 4
Views: 45901

Re: Zooming in x, autoranging in y

After stepping through the code, this appears to be not yet implemented, in my case at least. My dataset is a TimeSeriesCollection (instance of XYRangeInfo), and so TimeSeriesCollection.getRangeBounds is used rather than DatasetUtilities.iterateRangeBounds() (called on line 924 of DatasetUtilities)....
by autorange
Fri Aug 24, 2012 4:59 pm
Forum: JFreeChart - Stockmarket
Topic: Zooming in x, autoranging in y
Replies: 4
Views: 45901

Re: Zooming in x, autoranging in y

JGoodwin, did you ever find a solultion for this? I'm having the same issue. Basically I'd like the Y range (NumberAxis) to auto adjust to the min/max visible data points after a domain zoom. I'm using a CombinedDomainXYPlot with a DateAxis and multiple subplots using NumberAxis. I'm only a new user...