Example usage for org.jfree.data.time.ohlc OHLC getLow

List of usage examples for org.jfree.data.time.ohlc OHLC getLow

Introduction

In this page you can find the example usage for org.jfree.data.time.ohlc OHLC getLow.

Prototype

public double getLow() 

Source Link

Document

Returns the low value.

Usage

From source file:org.jfree.data.time.ohlc.OHLCItem.java

/**
 * Returns the low value.//from   w ww .  ja  va 2s  .c o  m
 *
 * @return The low value.
 */
public double getLowValue() {
    OHLC ohlc = (OHLC) getObject();
    if (ohlc != null) {
        return ohlc.getLow();
    } else {
        return Double.NaN;
    }
}