Package com.positive.charts.event

Examples of com.positive.charts.event.RendererChangeEvent


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


   */
  public void setNegativeItemLabelPosition(final ItemLabelPosition position,
      final boolean notify) {
    this.negativeItemLabelPosition = position;
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

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

   */
  public void setOutlineStroke(final Stroke stroke, final boolean notify) {
    this.getDrawingAssets().setStroke(Plot.STROKE_SERIES_OUTLINE_OVERRIDE,
        stroke);
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

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

   */
  public void setPositiveItemLabelPosition(final ItemLabelPosition position,
      final boolean notify) {
    this.positiveItemLabelPosition = position;
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

   */
  public void setSeriesCreateEntities(final int series, final Boolean create,
      final boolean notify) {
    this.createEntitiesList.set(series, create);
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

   */
  public void setSeriesFillPaint(final int series, final Color paint,
      final boolean notify) {
    this.fillPaintMap.put(new Integer(series), paint);
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

   */
  public void setSeriesItemLabelFont(final int series, final Font font,
      final boolean notify) {
    this.itemLabelFontList.set(series, font);
    if (notify) {
      this.notifyListeners(new RendererChangeEvent(this));
    }
  }
View Full Code Here

   */
  public void setSeriesItemLabelPaint(final int series, final Color paint,
      final boolean notify) {
    this.itemLabelPaintMap.put(new Integer(series), 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.