TCandleStyle

TCandleStyle

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

Unit
CandleCh

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

csCandleStick Each Candle is drawn as a Rectangle with top (High) and bottom (Low) lines.
csCandleBar Each Candle is drawn as a vertical Line with small horizontal lines at Open and Close.
csOpenClose Each Candle is drawn as a Rectangle (without High and Low lines)
csLine Lines are drawn between points (like a normal Line series)


The default CandleStyle is csCandleStick.

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

CandleSeries1.CandleStyle := csCandleBar;