Examples of MarkerChangeEvent


Examples of com.positive.charts.event.MarkerChangeEvent

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

Examples of com.positive.charts.event.MarkerChangeEvent

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

Examples of com.positive.charts.event.MarkerChangeEvent

   *
   * @since 1.0.3
   */
  public void setEndValue(final double value) {
    this.endValue = value;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.MarkerChangeEvent

   *
   * @since 1.0.3
   */
  public void setStartValue(final double value) {
    this.startValue = value;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.MarkerChangeEvent

   *
   * @since 1.0.3
   */
  public void setValue(final double value) {
    this.value = value;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.MarkerChangeEvent

   *
   * @see #getAlpha()
   */
  public void setAlpha(final int alpha) {
    this.alpha = alpha;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.MarkerChangeEvent

   *
   * @see #getLabel()
   */
  public void setLabel(final String label) {
    this.label = label;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.MarkerChangeEvent

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

Examples of com.positive.charts.event.MarkerChangeEvent

  public void setLabelFont(final Font font) {
    if (font == null) {
      throw new IllegalArgumentException("Null 'font' argument.");
    }
    this.labelFont = font;
    this.notifyListeners(new MarkerChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.MarkerChangeEvent

  public void setLabelOffset(final RectangleInsets offset) {
    if (offset == null) {
      throw new IllegalArgumentException("Null 'offset' argument.");
    }
    this.labelOffset = offset;
    this.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.