congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
VectorSeriesCollection.getYValue
Code IndexAdd Tabnine to your IDE (free)

How to use
getYValue
method
in
org.jfree.data.xy.VectorSeriesCollection

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

origin: jfree/jfreechart

/**
 * Returns the y-value for an item within a series.  Note that this method
 * creates a new {@link Double} instance every time it is called---use
 * {@link #getYValue(int, int)} instead, if possible.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The y-value.
 */
@Override
public Number getY(int series, int item) {
  return new Double(getYValue(series, item));
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the y-value for an item within a series.  Note that this method
 * creates a new {@link Double} instance every time it is called---use
 * {@link #getYValue(int, int)} instead, if possible.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The y-value.
 */
public Number getY(int series, int item) {
  return new Double(getYValue(series, item));
}
org.jfree.data.xyVectorSeriesCollectiongetYValue

Javadoc

Returns the y-value for an item within a series.

Popular methods of VectorSeriesCollection

  • getSeries
    Returns a series from the collection.
  • getSeriesCount
    Returns the number of series in the collection.
  • fireDatasetChanged
  • getXValue
    Returns the x-value for an item within a series.
  • <init>
    Creates a new instance of VectorSeriesCollection.
  • addSeries
    Adds a series to the collection and sends a DatasetChangeEventto all registered listeners.

Popular in Java

  • Making http requests using okhttp
  • onCreateOptionsMenu (Activity)
  • putExtra (Intent)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Runner (org.openjdk.jmh.runner)
  • Top 12 Jupyter Notebook extensions
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