Version:
jfreechart-1.0.0-rc1
But this workaround got bugs when u try zoom in & then zoom back(
for timeseries & OHLC candlestick(setAutoRangeIncludesZero(false)))...
The bugs is after user zoom in and zoom out, it will return to original autoRange.
This is because when user zoom in & zoom out. In the
ChartPanel class ->mouseReleased(...)->restoreAutoBounds()->restoreAutoDomainBounds() .It will restore back auto mode.
Exp: when y-axis have data from 35-60, then when autorange will become 30-65, but after
valueAxis.setRange(20,75) or valueAxis.setRangeWithMargins(20,75) , it can well showing 20 to 75 view but unfortunately after zoom out, it will return to auto mode. Because of somewhere calling
setAutoRange(true) method in ValueAxis class : resizeRange(double percent, double anchorValue) method.
So, I am also searching for solution...
