congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
VectorSeriesCollection.getXValue
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the x-value for an item within a series.  Note that this method
 * creates a new {@link Double} instance every time it is called---use
 * {@link #getXValue(int, int)} instead, if possible.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The x-value.
 */
public Number getX(int series, int item) {
  return new Double(getXValue(series, item));
}
origin: jfree/jfreechart

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

Javadoc

Returns the x-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
  • getYValue
    Returns the y-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

  • Parsing JSON documents to java classes using gson
  • putExtra (Intent)
  • findViewById (Activity)
  • onCreateOptionsMenu (Activity)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Join (org.hibernate.mapping)
  • 21 Best IntelliJ Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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