Codota Logo
YIntervalDataItem
Code IndexAdd Codota to your IDE (free)

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

Best Java code snippets using org.jfree.data.xy.YIntervalDataItem (Showing top 19 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

/**
 * Returns the x-value.
 *
 * @return The x-value (never {@code null}).
 */
public Double getX() {
  return (Double) getComparable();
}
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

/**
 * Returns the y-value.
 *
 * @return The y-value.
 */
public double getYValue() {
  YInterval interval = (YInterval) getObject();
  if (interval != null) {
    return interval.getY();
  }
  else {
    return Double.NaN;
  }
}
origin: jfree/jfreechart

/**
 * Returns the y-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The y-value.
 */
public double getYValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYValue();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the x-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The x-value (never <code>null</code>).
 */
public Number getX(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getX();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the lower bound of the Y-interval for the specified item in the
 * series.
 *
 * @param index  the item index.
 *
 * @return The lower bound of the Y-interval.
 *
 * @since 1.0.5
 */
public double getYLowValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYLowValue();
}
origin: jfree/jfreechart

/**
 * Returns the upper bound of the y-interval for the specified item in the
 * series.
 *
 * @param index  the item index.
 *
 * @return The upper bound of the y-interval.
 *
 * @since 1.0.5
 */
public double getYHighValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYHighValue();
}
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: jfree/jfreechart

/**
 * Returns the upper bound of the y-interval.
 *
 * @return The upper bound of the y-interval.
 */
public double getYHighValue() {
  YInterval interval = (YInterval) getObject();
  if (interval != null) {
    return interval.getYHigh();
  }
  else {
    return Double.NaN;
  }
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the y-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The y-value.
 */
public double getYValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYValue();
}
origin: jfree/jfreechart

/**
 * Returns the x-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The x-value (never {@code null}).
 */
public Number getX(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getX();
}
origin: jfree/jfreechart

/**
 * Returns the lower bound of the Y-interval for the specified item in the
 * series.
 *
 * @param index  the item index.
 *
 * @return The lower bound of the Y-interval.
 *
 * @since 1.0.5
 */
public double getYLowValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYLowValue();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the upper bound of the y-interval for the specified item in the
 * series.
 *
 * @param index  the item index.
 *
 * @return The upper bound of the y-interval.
 *
 * @since 1.0.5
 */
public double getYHighValue(int index) {
  YIntervalDataItem item = (YIntervalDataItem) getDataItem(index);
  return item.getYHighValue();
}
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);
}
origin: jfree/jfreechart

/**
 * Returns the y-value.
 *
 * @return The y-value.
 */
public double getYValue() {
  YInterval interval = (YInterval) getObject();
  if (interval != null) {
    return interval.getY();
  }
  else {
    return Double.NaN;
  }
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the x-value.
 *
 * @return The x-value (never <code>null</code>).
 */
public Double getX() {
  return (Double) getComparable();
}
origin: jfree/jfreechart

/**
 * Returns the lower bound of the y-interval.
 *
 * @return The lower bound of the y-interval.
 */
public double getYLowValue() {
  YInterval interval = (YInterval) getObject();
  if (interval != null) {
    return interval.getYLow();
  }
  else {
    return Double.NaN;
  }
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the upper bound of the y-interval.
 *
 * @return The upper bound of the y-interval.
 */
public double getYHighValue() {
  YInterval interval = (YInterval) getObject();
  if (interval != null) {
    return interval.getYHigh();
  }
  else {
    return Double.NaN;
  }
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the lower bound of the y-interval.
 *
 * @return The lower bound of the y-interval.
 */
public double getYLowValue() {
  YInterval interval = (YInterval) getObject();
  if (interval != null) {
    return interval.getYLow();
  }
  else {
    return Double.NaN;
  }
}
org.jfree.data.xyYIntervalDataItem

Javadoc

An item representing data in the form (x, y, y-low, y-high).

Most used methods

  • <init>
    Creates a new instance of YIntervalItem.
  • 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

  • Start an intent from android
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • BufferedReader (java.io)
    Reads text from a character-input stream, buffering characters so as to provide for the efficient re
  • KeyStore (java.security)
    This class represents an in-memory collection of keys and certificates. It manages two types of entr
  • Properties (java.util)
    The Properties class represents a persistent set of properties. The Properties can be saved to a st
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
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