I just started to try out jfreechart few days ago. I realized how much time it would have saved me on drawing chart had I come across this great api earlier!
I have a newbie question. For the past few days I have been playing around with plotting time-series chart. I noticed that if the range axis is set to use logarithmic axis, the zoom-in function doesn't really reflect the area I selected. It seems like I have to select the area when the line is plot under normal range axis in order to show the desired zoomed area.
But the zoom shows the correct area when I just use normal range axis for the same dataset.
I have only created a really basic log axis:
Code: Select all
LogarithmicAxis logAxis = new LogarithmicAxis("");
logAxis.setStrictValuesFlag(false);
xyplot.setRangeAxis(logAxis);

Thanks!