13851386138713881389139013911392139313941395
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); }
247248249250251252253254255256257
// keep track of total weights this.totalWeight += weight; ValueAxis axis = getDomainAxis(); if (axis != null) { axis.configure(); } notifyListeners(new PlotChangeEvent(this)); }
281282283284285286287288289290291
subplot.removeChangeListener(this); this.totalWeight -= subplot.getWeight(); ValueAxis domain = getDomainAxis(); if (domain != null) { domain.configure(); } notifyListeners(new PlotChangeEvent(this)); } }
606607608609610611612613614615616
} // after setting up all the subplots, the shared domain axis may need reconfiguring ValueAxis domainAxis = result.getDomainAxis(); if (domainAxis != null) { domainAxis.configure(); } return result; }
161162163164165166167168169170171
this.totalWeight += weight; // configure the range axis... ValueAxis axis = getRangeAxis(); if (axis != null) { axis.configure(); } notifyListeners(new PlotChangeEvent(this)); } /**
191192193194195196197198199200201
subplot.removeChangeListener(this); this.totalWeight -= subplot.getWeight(); ValueAxis range = getRangeAxis(); if (range != null) { range.configure(); } ValueAxis range2 = getRangeAxis(1); if (range2 != null) { range2.configure();
196197198199200201202203204205206
range.configure(); } ValueAxis range2 = getRangeAxis(1); if (range2 != null) { range2.configure(); } notifyListeners(new PlotChangeEvent(this)); } }
507508509510511512513514515516517
} // after setting up all the subplots, the shared range axis may need reconfiguring ValueAxis rangeAxis = result.getRangeAxis(); if (rangeAxis != null) { rangeAxis.configure(); } return result; }
529530531532533534535536537538539
// the range axis is deserialized before the subplots, so its value range // is likely to be incorrect... ValueAxis rangeAxis = getRangeAxis(); if (rangeAxis != null) { rangeAxis.configure(); } } }
640641642643644645646647648649650
*/ public void configureDomainAxes() { for (int i = 0; i < this.domainAxes.size(); i++) { ValueAxis axis = (ValueAxis) this.domainAxes.get(i); if (axis != null) { axis.configure(); } } } /**