Examples of MarkerChangeEvent


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

Examples of com.positive.charts.event.MarkerChangeEvent

  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

Examples of com.positive.charts.event.MarkerChangeEvent

  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

Examples of com.positive.charts.event.MarkerChangeEvent

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

Examples of com.positive.charts.event.MarkerChangeEvent

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

Examples of com.positive.charts.event.MarkerChangeEvent

  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

Examples of com.positive.charts.event.MarkerChangeEvent

  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

Examples of org.jfree.chart.event.MarkerChangeEvent

    public void setKey(Comparable key) {
        if (key == null) {
            throw new IllegalArgumentException("Null 'key' argument.");
        }
        this.key = key;
        notifyListeners(new MarkerChangeEvent(this));
    }
View Full Code Here

Examples of org.jfree.chart.event.MarkerChangeEvent

     *
     * @param drawAsLine  the flag.
     */
    public void setDrawAsLine(boolean drawAsLine) {
        this.drawAsLine = drawAsLine;
        notifyListeners(new MarkerChangeEvent(this));
    }
View Full Code Here

Examples of org.jfree.chart.event.MarkerChangeEvent

     *
     * @since 1.0.3
     */
    public void setValue(double value) {
        this.value = value;
        notifyListeners(new MarkerChangeEvent(this));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.