Package com.positive.charts.event

Examples of com.positive.charts.event.PlotChangeEvent


   */
  public void setRangeCrosshairLockedOnData(final boolean flag) {

    if (this.rangeCrosshairLockedOnData != flag) {
      this.rangeCrosshairLockedOnData = flag;
      this.notifyListeners(new PlotChangeEvent(this));
    }

  }
View Full Code Here


   * @param paint
   *            the new crosshair paint.
   */
  public void setRangeCrosshairPaint(final Color paint) {
    this.rangeCrosshairPaint = paint;
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

   * @param stroke
   *            the new crosshair stroke.
   */
  public void setRangeCrosshairStroke(final Stroke stroke) {
    this.rangeCrosshairStroke = stroke;
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

   *            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));
    }
  }
View Full Code Here

   */
  public void setRangeCrosshairVisible(final boolean flag) {

    if (this.rangeCrosshairVisible != flag) {
      this.rangeCrosshairVisible = flag;
      this.notifyListeners(new PlotChangeEvent(this));
    }

  }
View Full Code Here

  public void setRangeGridlinePaint(final Color paint) {
    if (paint == null) {
      throw new IllegalArgumentException("Null 'paint' argument.");
    }
    this.rangeGridlinePaint = paint;
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

  public void setRangeGridlineStroke(final Stroke stroke) {
    if (stroke == null) {
      throw new IllegalArgumentException("Null 'stroke' argument.");
    }
    this.rangeGridlineStroke = stroke;
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

   *            the new value of the flag.
   */
  public void setRangeGridlinesVisible(final boolean visible) {
    if (this.rangeGridlinesVisible != visible) {
      this.rangeGridlinesVisible = visible;
      this.notifyListeners(new PlotChangeEvent(this));
    }
  }
View Full Code Here

    this.configureDomainAxes();
    this.configureRangeAxes();

    if (notify) {
      this.notifyListeners(new PlotChangeEvent(this));
    }
  }
View Full Code Here

   */
  public void setRenderers(final CategoryItemRenderer[] renderers) {
    for (int i = 0; i < renderers.length; i++) {
      this.setRenderer(i, renderers[i], false);
    }
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

TOP

Related Classes of com.positive.charts.event.PlotChangeEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.