Examples of AxisChangeEvent


Examples of com.positive.charts.event.AxisChangeEvent

   * @see #setAxisLinePaint(Paint)
   * @see #setAxisLineStroke(Stroke)
   */
  public void setAxisLineVisible(final boolean visible) {
    this.axisLineVisible = visible;
    this.notifyListeners(new AxisChangeEvent(this));
  }
View Full Code Here

Examples of com.positive.charts.event.AxisChangeEvent

  public void setLabel(final String label) {
    final String existing = this.label;
    if (existing != null) {
      if (!existing.equals(label)) {
        this.label = label;
        this.notifyListeners(new AxisChangeEvent(this));
      }
    } else {
      if (label != null) {
        this.label = label;
        this.notifyListeners(new AxisChangeEvent(this));
      }
    }
  }
View Full Code Here

Examples of org.jfree.chart.event.AxisChangeEvent

        }
        else {
            setRange(this.displayStart, this.fixedRange.getUpperBound()
                  + (this.displayEnd - this.fixedRange.getLowerBound()));
        }
        notifyListeners(new AxisChangeEvent(this));
    }
View Full Code Here

Examples of org.jfree.chart.event.AxisChangeEvent

     * Sends an {@link AxisChangeEvent} to all registered listeners.
     *
     * @since 1.0.12
     */
    protected void fireChangeEvent() {
        notifyListeners(new AxisChangeEvent(this));
    }
View Full Code Here

Examples of org.jfree.chart.event.AxisChangeEvent

    public void setSubLabelFont(Font font) {
        if (font == null) {
            throw new IllegalArgumentException("Null 'font' argument.");
        }
        this.sublabelFont = font;
        notifyListeners(new AxisChangeEvent(this));
    }
View Full Code Here

Examples of org.jfree.chart.event.AxisChangeEvent

    public void setSubLabelPaint(Paint paint) {
        if (paint == null) {
            throw new IllegalArgumentException("Null 'paint' argument.");
        }
        this.sublabelPaint = paint;
        notifyListeners(new AxisChangeEvent(this));
    }
View Full Code Here

Examples of org.jfree.chart.event.AxisChangeEvent

     * @see #isGridBandsVisible()
     */
    public void setGridBandsVisible(boolean flag) {
        if (this.gridBandsVisible != flag) {
            this.gridBandsVisible = flag;
            notifyListeners(new AxisChangeEvent(this));
        }
    }
View Full Code Here

Examples of org.jfree.chart.event.AxisChangeEvent

    public void setGridBandPaint(Paint paint) {
        if (paint == null) {
            throw new IllegalArgumentException("Null 'paint' argument.");
        }
        this.gridBandPaint = paint;
        notifyListeners(new AxisChangeEvent(this));
    }
View Full Code Here

Examples of org.jfree.chart.event.AxisChangeEvent

    public void setGridBandAlternatePaint(Paint paint) {
        if (paint == null) {
            throw new IllegalArgumentException("Null 'paint' argument.");
        }
        this.gridBandAlternatePaint = paint;
        notifyListeners(new AxisChangeEvent(this));
    }
View Full Code Here

Examples of org.jfree.chart.event.AxisChangeEvent

        if (base <= 1.0) {
            throw new IllegalArgumentException("Requires 'base' > 1.0.");
        }
        this.base = base;
        this.baseLog = Math.log(base);
        notifyListeners(new AxisChangeEvent(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.