mobilecontrols-devexpress-dot-xamarinforms-dot-charts-71fb5d30.md
Stores objects that specify data source fields that contain data for series point values.
Namespace : DevExpress.XamarinForms.Charts
Assembly : DevExpress.XamarinForms.Charts.dll
NuGet Package : DevExpress.XamarinForms.Charts
public class ValueDataMemberCollection :
ObservableCollection<ValueDataMember>
The following members return ValueDataMemberCollection objects:
ValueDataMemberCollection is a collection of ValueDataMember objects, which provide data for series point values. The number of these objects within the collection depends on the series type.
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 :
IReadOnlyList<ValueDataMember>
IReadOnlyCollection<ValueDataMember>
Object Collection<ValueDataMember> ObservableCollection<ValueDataMember> ValueDataMemberCollection
See Also