ISeries.asHorizBar
ISeries

property asHorizBar: IHorizBarSeries;

Type Library
TeeChartx

Description
The asHorizBar property is used by the Series Class to access HorizBar Series specific properties. See Typecasting for a detailed explanation of access to Series and Function specific properties.

eg. 'tmp = TChart1.Series(x).asHorizBar.BarHeight'.

Example [Visual Basic]:

With TChart1.Series( 0 )

.Add 10, "1st", clTeeColor

.Add 4, "2nd", clTeeColor

.Add 7, "3rd", clTeeColor

.Add 11, "4th", clTeeColor

.asHorizBar.BarHeight =.asHorizBarBar.BarHeight * 2

End With