Package com.positive.charts.event

Examples of com.positive.charts.event.RendererChangeEvent


   * @param margin
   *            the new margin.
   */
  public void setMargin(final double margin) {
    this.margin = margin;
    this.notifyListeners(new RendererChangeEvent(this));
  }
View Full Code Here


    if (paint == null) {
      throw new IllegalArgumentException("Null 'paint' argument.");
    }
    this.getDrawingAssets().setColor(Plot.COLOR_ITEM_LABEL_BASE, paint);
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

   * @since 1.0.2
   */
  public void setNegativeItemLabelPositionFallback(
      final ItemLabelPosition position) {
    this.negativeItemLabelPositionFallback = position;
    this.notifyListeners(new RendererChangeEvent(this));
  }
View Full Code Here

   * @since 1.0.2
   */
  public void setPositiveItemLabelPositionFallback(
      final ItemLabelPosition position) {
    this.positiveItemLabelPositionFallback = position;
    this.notifyListeners(new RendererChangeEvent(this));
  }
View Full Code Here

   */
  public void setBaseItemLabelsVisible(final Boolean visible,
      final boolean notify) {
    this.baseItemLabelsVisible = visible.booleanValue();
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

   * @param use
   *            the flag.
   */
  public void setUseYInterval(final boolean use) {
    this.useYInterval = use;
    this.notifyListeners(new RendererChangeEvent(this));
  }
View Full Code Here

    if (position == null) {
      throw new IllegalArgumentException("Null 'position' argument.");
    }
    this.baseNegativeItemLabelPosition = position;
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

    if (paint == null) {
      throw new IllegalArgumentException("Null 'paint' argument.");
    }
    this.getDrawingAssets().setColor(Plot.COLOR_SERIES_OUTLINE_BASE, paint);
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

    }
    this.getDrawingAssets().setStroke(Plot.STROKE_SERIES_OUTLINE_BASE,
        stroke);

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

   *            notify listeners?
   */
  public void setBasePaint(final Color paint, final boolean notify) {
    this.getDrawingAssets().setColor(Plot.COLOR_SERIES_BASE, paint);
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

TOP

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

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.