12631264126512661267126812691270127112721273
*/ public void configureRangeAxes() { for (int i = 0; i < this.rangeAxes.size(); i++) { ValueAxis axis = (ValueAxis) this.rangeAxes.get(i); if (axis != null) { axis.configure(); } } } /**
22892290229122922293229422952296229722982299
int count = this.rangeAxes.size(); for (int axisIndex = 0; axisIndex < count; axisIndex++) { ValueAxis yAxis = getRangeAxis(axisIndex); if (yAxis != null) { yAxis.configure(); } } if (getParent() != null) { getParent().datasetChanged(event); }
852853854855856857858859860861862
*/ public void configureDomainAxes() { for (int i = 0; i < this.domainAxes.size(); i++) { ValueAxis axis = (ValueAxis) this.domainAxes.get(i); if (axis != null) { axis.configure(); } } } /**
11521153115411551156115711581159116011611162
11921193119411951196119711981199120012011202
19351936193719381939194019411942194319441945
864865866867868869870871872873874
11641165116611671168116911701171117211731174
584585586587588589590591592593594
} // after setting up all the subplots, the shared range axis may need reconfiguring ValueAxis rangeAxis = result.getRangeAxis(); if (rangeAxis != null) { rangeAxis.configure(); } return result; }
827828829830831832833834835836837