Back to Devexpress

SeriesDataAdapter.ValueDataMembers Property

maui-devexpress-dot-maui-dot-charts-dot-seriesdataadapter-9e5e8085.md

latest3.1 KB
Original Source

SeriesDataAdapter.ValueDataMembers Property

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

Declaration

csharp
public ValueDataMemberCollection ValueDataMembers { get; }

Property Value

TypeDescription
ValueDataMemberCollection

The collection of the names of data fields that contain series point values.

|

Remarks

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:

  • DataSource — the data source for the chart.
  • ArgumentDataMember — the data source field that contains argument values. Each data point of a series requires one argument value.
  • 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).

Example

These examples show how to create and configure the data adapter to populate ChartView series of different types with data.

See Also

SeriesDataAdapter Class

SeriesDataAdapter Members

DevExpress.Maui.Charts Namespace