ISeries.asFunnel
ISeries
property asFunnel: IFunnelSeries;
Type Library
TeeChartx
Description
The asFunnel property is used by the Series Class to access Funnel Series specific properties. See Typecasting for a detailed explanation of access to Series and Function specific properties.
Example [Visual Basic]:
With TChart1
.AddSeries scFunnel
.Series(0).FillSampleValues 10
.Legend.Visible = False
With .Series(0).asFunnel
.AboveColor = vbCyan
.BelowColor = vbBlue
.WithinColor = vbRed
.LinesPen.Color = vbGreen
End With
End With