Tabnine Logo
AbstractIntervalXYDataset.getStartY
Code IndexAdd Tabnine to your IDE (free)

How to use
getStartY
method
in
org.jfree.data.xy.AbstractIntervalXYDataset

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

origin: jfree/jfreechart

/**
 * Returns the start y-value (as a double primitive) for an item within a
 * series.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
@Override
public double getStartYValue(int series, int item) {
  double result = Double.NaN;
  Number y = getStartY(series, item);
  if (y != null) {
    result = y.doubleValue();
  }
  return result;
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the start y-value (as a double primitive) for an item within a
 * series.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public double getStartYValue(int series, int item) {
  double result = Double.NaN;
  Number y = getStartY(series, item);
  if (y != null) {
    result = y.doubleValue();
  }
  return result;
}
org.jfree.data.xyAbstractIntervalXYDatasetgetStartY

Javadoc

Returns the start y-value (as a double primitive) for an item within a series.

Popular methods of AbstractIntervalXYDataset

  • clone
  • getEndX
  • getEndY
  • getStartX

Popular in Java

  • Creating JSON documents from java classes using gson
  • startActivity (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Option (scala)
  • Top Vim 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