Codota Logo
YIntervalDataItem.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.jfree.data.xy.YIntervalDataItem
constructor

Best Java code snippets using org.jfree.data.xy.YIntervalDataItem.<init> (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Dictionary d =
  • Codota Iconnew Hashtable()
  • Codota IconBundle bundle;bundle.getHeaders()
  • Codota Iconnew Properties()
  • Smart code suggestions by Codota
}
origin: jfree/jfreechart

/**
 * Adds a data item to the series and sends a {@link SeriesChangeEvent} to 
 * all registered listeners.
 *
 * @param x  the x-value.
 * @param y  the y-value.
 * @param yLow  the lower bound of the y-interval.
 * @param yHigh  the upper bound of the y-interval.
 */
public void add(double x, double y, double yLow, double yHigh) {
  add(new YIntervalDataItem(x, y, yLow, yHigh), true);
}
 
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Adds a data item to the series.
 *
 * @param x  the x-value.
 * @param y  the y-value.
 * @param yLow  the lower bound of the y-interval.
 * @param yHigh  the upper bound of the y-interval.
 */
public void add(double x, double y, double yLow, double yHigh) {
  super.add(new YIntervalDataItem(x, y, yLow, yHigh), true);
}
origin: inspectIT/inspectIT

/**
 * Adds a data item to the series.
 *
 * @param x
 *            the x-value.
 * @param y
 *            the y-value.
 * @param yLow
 *            the lower bound of the y-interval.
 * @param yHigh
 *            the upper bound of the y-interval.
 * @param notify
 *            a flag that controls whether or not a
 *            {@link org.jfree.data.general.SeriesChangeEvent} is sent to all registered
 *            listeners.
 */
public void add(double x, double y, double yLow, double yHigh, boolean notify) {
  super.add(new YIntervalDataItem(x, y, yLow, yHigh), notify);
}
org.jfree.data.xyYIntervalDataItem<init>

Javadoc

Creates a new instance of YIntervalDataItem.

Popular methods of YIntervalDataItem

  • getComparable
  • getObject
  • getX
    Returns the x-value.
  • getYHighValue
    Returns the upper bound of the y-interval.
  • getYLowValue
    Returns the lower bound of the y-interval.
  • getYValue
    Returns the y-value.

Popular in Java

  • Running tasks concurrently on multiple threads
  • onCreateOptionsMenu (Activity)
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
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