maui-devexpress-dot-maui-dot-charts-dot-valuedatamember-ecb42408.md
Gets or sets the data source field that contains data for series point values. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public string Member { get; set; }
| Type | Description |
|---|---|
| String |
The data source field that contains data for series point values.
|
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