588589590591592593594595596597598
continue; } if (isRangePannable() || subplot.isRangePannable()) { for (int i = 0; i < subplot.getRangeAxisCount(); i++) { ValueAxis rangeAxis = subplot.getRangeAxis(i); rangeAxis.pan(panRange); } } } }
49724973497449754976497749784979498049814982
continue; } if (axis.isInverted()) { percent = -percent; } axis.pan(percent); } } /** * Pans the range axes by the specified percentage.
50005001500250035004500550065007500850095010
continue; } if (axis.isInverted()) { percent = -percent; } axis.pan(percent); } } /** * Multiplies the range on the domain axis/axes by the specified factor.
534535536537538539540541542543544
continue; } if (isDomainPannable() || subplot.isDomainPannable()) { for (int i = 0; i < subplot.getDomainAxisCount(); i++) { ValueAxis domainAxis = subplot.getDomainAxis(i); domainAxis.pan(panRange); } } } }