ISeries.SeriesType
ISeries

property SeriesType: ESeriesClass;

Type Library
TeeChartx

Description
The SeriesType property returns the Series type of the Series.

Example [Visual Basic]:

Dim t As Integer

For t = 0 To TChart1.SeriesCount - 1

With TChart1.Series(t)

If .SeriesType = scBar Then

.asBar.BarStyle = bsCilinder

End If

End With

Next t