ISeries.asArea
ISeries

property asArea: IAreaSeries;

Type Library
TeeChartx

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

eg. 'TChart1.Series(x).asArea.AreaPen.Color = vbGreen'.

Example [Visual Basic]:

With TChart1.Series(0)

.Add 10, "Area 1", clTeeColor

.Add 4, "Area 2", clTeeColor

.Add 7, "Area 3", clTeeColor

.asArea.MultiArea = maStacked

End With