Package com.positive.charts.event

Examples of com.positive.charts.event.RendererChangeEvent


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


   *            notify listeners?
   */
  public void setBaseSeriesVisible(final boolean visible, final boolean notify) {
    this.baseSeriesVisible = visible;
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

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

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

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

   *            notify listeners?
   */
  public void setCreateEntities(final Boolean create, final boolean notify) {
    this.createEntities = create;
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

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

   * @param offset
   *            the offset.
   */
  public void setItemLabelAnchorOffset(final int offset) {
    this.itemLabelAnchorOffset = offset;
    this.notifyListeners(new RendererChangeEvent(this));
  }
View Full Code Here

   *            a flag that controls whether or not listeners are notified.
   */
  public void setItemLabelFont(final Font font, final boolean notify) {
    this.itemLabelFont = font;
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

   *            a flag that controls whether or not listeners are notified.
   */
  public void setItemLabelPaint(final Color paint, final boolean notify) {
    this.getDrawingAssets().setColor(Plot.COLOR_ITEM_LABEL_OVERRIDE, 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.