Skip to main content

TcxGridDBChartView.Series Property

Provides indexed access to all the series which provide values for the data-aware View.

Declaration

property Series[Index: Integer]: TcxGridDBChartSeries read; write;

Property Value

Type
TcxGridDBChartSeries

Remarks

A series in a data-aware Chart View is represented by an instance of the TcxGridDBChartSeries class which enables you to link the series to a specific dataset field and also provides various properties for customizing the appearance of the series within the View.

Use the Series zero-based indexed collection to access all the series which provide series values for rendering the data-aware Chart View. Use the SeriesCount property to obtain the total number of series whose values are available for displaying within the diagrams of the View. To access all the series whose values were used to render the View (i.e., that are visible within the View), use the VisibleSeries property instead. A count of the total number of these series can be obtained from the VisibleSeriesCount property. To control the visibility of a specific series (its series values) within the View, set the Visible property of the series as required.

See Also