ECandleStyle

type ECandleStyle = (csCandleStick, csCandleBar, csOpenClose, csLine);

Type Library
TeeChartx

Description
ECandleStyle defines the possible values of the CandleSeries.CandleStyle property. CandleSeries.CandleStyle property defines how a CandleSeries point will be visually displayed.

See note on use of Enum constants in differing development environments.

Values

0csCandleBar Each Candle is drawn as a vertical Line with small horizontal lines.

1csCandleStick Each Candle is drawn as a Rectangle with top and bottom lines.

2csOpenClose Shows point as Open and Close values only

The default CandleStyle is csCandleBar.

You can switch between Candle Styles both at design and runtime:

TChart1.Series( 0 ).asCandle.CandleStyle = csCandleBar