Examples of TitleChangeEvent


Examples of com.positive.charts.event.TitleChangeEvent

  public void setLegendItemGraphicPadding(final RectangleInsets padding) {
    if (padding == null) {
      throw new IllegalArgumentException("Null 'padding' argument.");
    }
    this.legendItemGraphicPadding = padding;
    this.notifyListeners(new TitleChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

   * @param paint
   *            the background paint (<code>null</code> permitted).
   */
  public void setBackgroundPaint(final Color paint) {
    this.backgroundPaint = paint;
    this.notifyListeners(new TitleChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

   * @param expand
   *            the flag.
   */
  public void setExpandToFitSpace(final boolean expand) {
    this.expandToFitSpace = expand;
    this.notifyListeners(new TitleChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

    if (font == null) {
      throw new IllegalArgumentException("Null 'font' argument.");
    }
    if (!this.font.equals(font)) {
      this.font = font;
      this.notifyListeners(new TitleChangeEvent(this));
    }
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

   *
   * @see #getMaximumLinesToDisplay()
   */
  public void setMaximumLinesToDisplay(final int max) {
    this.maximumLinesToDisplay = max;
    this.notifyListeners(new TitleChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

    if (paint == null) {
      throw new IllegalArgumentException("Null 'paint' argument.");
    }
    if (!this.paint.equals(paint)) {
      this.paint = paint;
      this.notifyListeners(new TitleChangeEvent(this));
    }
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

    if (text == null) {
      throw new IllegalArgumentException("Null 'text' argument.");
    }
    if (!this.text.equals(text)) {
      this.text = text;
      this.notifyListeners(new TitleChangeEvent(this));
    }
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

  public void setTextAlignment(final HorizontalAlignment alignment) {
    if (alignment == null) {
      throw new IllegalArgumentException("Null 'alignment' argument.");
    }
    this.textAlignment = alignment;
    this.notifyListeners(new TitleChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

   * @param text
   *            the text (<code>null</code> permitted).
   */
  public void setToolTipText(final String text) {
    this.toolTipText = text;
    this.notifyListeners(new TitleChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.TitleChangeEvent

   * @param text
   *            the text (<code>null</code> permitted).
   */
  public void setURLText(final String text) {
    this.urlText = text;
    this.notifyListeners(new TitleChangeEvent(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.