ISeries.asShape
ISeries

property asShape: IShapeSeries;

Type Library
TeeChartx

Description
The asShape property is used by the Series Class to access Shape Series specific properties.

eg. 'TChart1.Series(x).asShape.Brush.Color = vbYellow'.

Example [Visual Basic]:

With TChart1.Series( 0 )

.Clear

.asShape.X0 = 10

.asShape.Y0 = 12

.asShape.X1 = 37

.asShape.Y1 = 40

End With