Tabnine Logo
VectorSeries.fireSeriesChanged
Code IndexAdd Tabnine to your IDE (free)

How to use
fireSeriesChanged
method
in
org.jfree.data.xy.VectorSeries

Best Java code snippets using org.jfree.data.xy.VectorSeries.fireSeriesChanged (Showing top 2 results out of 315)

origin: jfree/jfreechart

/**
 * Removes the item at the specified index and sends a
 * {@link SeriesChangeEvent} to all registered listeners.
 *
 * @param index  the index.
 *
 * @return The item removed.
 */
@Override
public ComparableObjectItem remove(int index) {
  VectorDataItem result = (VectorDataItem) this.data.remove(index);
  fireSeriesChanged();
  return result;
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Removes the item at the specified index and sends a
 * {@link SeriesChangeEvent} to all registered listeners.
 *
 * @param index  the index.
 *
 * @return The item removed.
 */
public ComparableObjectItem remove(int index) {
  VectorDataItem result = (VectorDataItem) this.data.remove(index);
  fireSeriesChanged();
  return result;
}
org.jfree.data.xyVectorSeriesfireSeriesChanged

Popular methods of VectorSeries

  • add
    Adds a data item to the series and, if requested, sends a SeriesChangeEvent to all registered listen
  • addChangeListener
  • getDataItem
    Returns the data item at the specified index.
  • getItemCount
  • getKey
  • removeChangeListener
  • <init>
    Constructs a new series that contains no data. You can specify whether or not duplicate x-values are
  • setMaximumItemCount

Popular in Java

  • Parsing JSON documents to java classes using gson
  • startActivity (Activity)
  • onRequestPermissionsResult (Fragment)
  • compareTo (BigDecimal)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • JPanel (javax.swing)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now