Package com.positive.charts.event

Examples of com.positive.charts.event.PlotChangeEvent


  public void setSeriesRenderingOrder(final SeriesRenderingOrder order) {
    if (order == null) {
      throw new IllegalArgumentException("Null 'order' argument.");
    }
    this.seriesRenderingOrder = order;
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here


  public void addAnnotation(final CategoryAnnotation annotation) {
    if (annotation == null) {
      throw new IllegalArgumentException("Null 'annotation' argument.");
    }
    this.annotations.add(annotation);
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

        this.backgroundDomainMarkers.put(new Integer(index), markers);
      }
      markers.add(marker);
    }
    marker.addChangeListener(this);
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

        this.backgroundRangeMarkers.put(new Integer(index), markers);
      }
      markers.add(marker);
    }
    marker.addChangeListener(this);
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

   * Clears all the annotations and sends a {@link PlotChangeEvent} to all
   * registered listeners.
   */
  public void clearAnnotations() {
    this.annotations.clear();
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

      if (axis != null) {
        axis.removeChangeListener(this);
      }
    }
    this.domainAxes.clear();
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

        final Integer key = (Integer) iterator.next();
        this.clearDomainMarkers(key.intValue());
      }
      this.foregroundDomainMarkers.clear();
    }
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

          m.removeChangeListener(this);
        }
        markers.clear();
      }
    }
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

      if (axis != null) {
        axis.removeChangeListener(this);
      }
    }
    this.rangeAxes.clear();
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

        final Integer key = (Integer) iterator.next();
        this.clearRangeMarkers(key.intValue());
      }
      this.foregroundRangeMarkers.clear();
    }
    this.notifyListeners(new PlotChangeEvent(this));
  }
View Full Code Here

TOP

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

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.