TcxGridChartViewData.Values Property
In This Article
Provides indexed access to series values associated with the View.
#Declaration
Delphi
property Values[ASeriesIndex: Integer; AIndex: Integer]: Variant read; write;
#Property Value
Type | Description |
---|---|
Variant | A series value. |
#Remarks
Use the Values
property to access and modify a specific series value provided by the data controller for displaying in the View. The ASeriesIndex
and AIndex
parameters specify correspondingly the index of the series in the collection of series and the index of the series value within the collection of series values in this series. Alternatively, you can use the Values collection of a specific series for this purpose.
Note
The View’s Categories.Values
collection.
See Also