Example usage for org.jfree.data.xy YIntervalDataItem getYLowValue

List of usage examples for org.jfree.data.xy YIntervalDataItem getYLowValue

Introduction

In this page you can find the example usage for org.jfree.data.xy YIntervalDataItem getYLowValue.

Prototype

public double getYLowValue() 

Source Link

Document

Returns the lower bound of the y-interval.

Usage

From source file:org.jfree.data.xy.YIntervalDataItemTest.java

/**
 * Some checks for the constructor./*w  w w.j  a  v a  2  s. co  m*/
 */
@Test
public void testConstructor1() {
    YIntervalDataItem item1 = new YIntervalDataItem(1.0, 2.0, 3.0, 4.0);
    assertEquals(new Double(1.0), item1.getX());
    assertEquals(2.0, item1.getYValue(), EPSILON);
    assertEquals(3.0, item1.getYLowValue(), EPSILON);
    assertEquals(4.0, item1.getYHighValue(), EPSILON);
}