ISeries.asBar
ISeries

property asBar: IBarSeries;

Type Library
TeeChartx

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

Example [Visual Basic]:

With TChart1.Series( 0 )

.Add 10, "Bar 1", clTeeColor

.Add 4, "Bar 2", clTeeColor

.Add 7, "Bar 3", clTeeColor

.asBar.MultiBar = mbStacked

End With