When my axis Range is [10.0, 20.0] and I want to change it to [0.0, 10.0] its not possible. The range is [10.0, 20.0] then.
I have a CombinedDomainXYPlot and set the axis range:
Code: Select all
ValueAxis axis = xyplot[0].getDomainAxis();
xMinMax[0] = (0);
xMinMax[1] = (10);
axis.setLowerBound(xMinMax[0]);
axis.setUpperBound(xMinMax[1]);