maui-devexpress-dot-maui-dot-charts-dot-seriesdataadapter-9e5e8085.md
Gets a collection of the names of data source fields that contain series point values. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public ValueDataMemberCollection ValueDataMembers { get; }
| Type | Description |
|---|---|
| ValueDataMemberCollection |
The collection of the names of data fields that contain series point values.
|
To populate the ChartView series with data, you can bind it to a data source. To do this, set the Data property of your series to a SeriesDataAdapter instance and specify this adapter’s properties:
ValueDataMembers — the collection of data source fields that contain data values for series points. The number of items in the collection depends upon the series type (see the Examples section below).These examples show how to create and configure the data adapter to populate ChartView series of different types with data.
For most series types supported by ChartView (besides financial, range bar and bubble charts), specify one ValueDataMember object with the Type set to Value :
For financial series (CandleStickSeries and StockSeries), specify four ValueDataMember objects with Type set to High , Low , Open , and Close :
For RangeBarSeries, specify two ValueDataMember objects with Type set to High and Low :
For BubbleSeries, specify two ValueDataMember objects with Type set to Value and Weight :
See Also