com.steema.teechart.styles
Class SeriesOHLCPoint

java.lang.Object
  extended by com.steema.teechart.styles.SeriesPoint
      extended by com.steema.teechart.styles.SeriesOHLCPoint

public class SeriesOHLCPoint
extends SeriesPoint

Title: SeriesOHLCPoint class

Description: Class provides access to XYZ Point characteristics

Copyright (c) 2005-2013 by Steema Software SL. All Rights Reserved.

Company: Steema Software SL


Field Summary
 
Fields inherited from class com.steema.teechart.styles.SeriesPoint
index, series
 
Constructor Summary
SeriesOHLCPoint()
           
SeriesOHLCPoint(OHLC s, int i)
           
 
Method Summary
 double getClose()
          Indexed Point Close value.
 double getDate()
          Indexed Point Date value.
 double getHigh()
          Indexed Point High value.
 double getLow()
          Indexed Point Low value.
 double getOpen()
          Indexed Point Open value.
 void setClose(double value)
          Indexed Point Close value.
 void setDate(double value)
          Indexed Point Date value.
 void setHigh(double value)
          Indexed Point High value.
 void setLow(double value)
          Indexed Point Low value.
 void setOpen(double value)
          Indexed Point Open value.
 
Methods inherited from class com.steema.teechart.styles.SeriesPoint
getColor, getLabel, setColor, setLabel
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SeriesOHLCPoint

public SeriesOHLCPoint()

SeriesOHLCPoint

public SeriesOHLCPoint(OHLC s,
                       int i)
Method Detail

getOpen

public double getOpen()
Indexed Point Open value.
You can access Open values in the same way you can access X or Y values.

Returns:
double

setOpen

public void setOpen(double value)
Indexed Point Open value.

Parameters:
value - double

getHigh

public double getHigh()
Indexed Point High value.
You can access High values in the same way you can access X or Y values.

Returns:
double

setHigh

public void setHigh(double value)
Indexed Point High value.

Parameters:
value - double

getLow

public double getLow()
Indexed Point Low value.
You can access Low values in the same way you can access X or Y values.

Returns:
double

setLow

public void setLow(double value)
Indexed Point Low value.

Parameters:
value - double

getClose

public double getClose()
Indexed Point Close value.
You can access Close values in the same way you can access X or Y values.

Returns:
double

setClose

public void setClose(double value)
Indexed Point Close value.

Parameters:
value - double

getDate

public double getDate()
Indexed Point Date value.
You can access Date values in the same way you can access X or Y values.

Returns:
double

setDate

public void setDate(double value)
Indexed Point Date value.

Parameters:
value - double