* a flag that controls whether or not listeners are notified.
*/
public void setRangeCrosshairValue(final double value, final boolean notify) {
this.rangeCrosshairValue = value;
if (this.isRangeCrosshairVisible() && notify) {
this.notifyListeners(new PlotChangeEvent(this));
}
}