Package com.positive.charts.event

Examples of com.positive.charts.event.ChartChangeEvent


   * Sends a default {@link ChartChangeEvent} to all registered listeners.
   * <P>
   * This method is for convenience only.
   */
  public void fireChartChanged() {
    this.notifyListeners(new ChartChangeEvent(this));
  }
View Full Code Here


   *            a state of notification sends.
   */
  public void setNotify(final boolean enable) {
    this.notify = enable;
    if (enable) {
      this.notifyListeners(new ChartChangeEvent(this));
    }
  }
View Full Code Here

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

TOP

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

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.