Package com.positive.charts.event

Examples of com.positive.charts.event.MarkerChangeEvent


  public void setLabelOffsetType(final LengthAdjustmentType adj) {
    if (adj == null) {
      throw new IllegalArgumentException("Null 'adj' argument.");
    }
    this.labelOffsetType = adj;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here


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

  public void setLabelTextAnchor(final TextAnchor anchor) {
    if (anchor == null) {
      throw new IllegalArgumentException("Null 'anchor' argument.");
    }
    this.labelTextAnchor = anchor;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

   *
   * @see #getOutlinePaint()
   */
  public void setOutlinePaint(final Color paint) {
    this.outlinePaint = paint;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

   *
   * @see #getOutlineStroke()
   */
  public void setOutlineStroke(final Stroke stroke) {
    this.outlineStroke = stroke;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

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

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

TOP

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

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.