Codota Logo
VectorSeriesCollection.getYValue
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
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

  • Start an intent from android
  • runOnUiThread (Activity)
  • orElseThrow (Optional)
  • onCreateOptionsMenu (Activity)
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • MessageFormat (java.text)
    MessageFormat provides a means to produce concatenated messages in language-neutral way. Use this to
  • Timer (java.util)
    A facility for threads to schedule tasks for future execution in a background thread. Tasks may be s
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now