maui-devexpress-dot-maui-dot-charts-dot-valuedatamember.md
Gets or sets the value type for series point values.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public ValueType Type { get; set; }
| Type | Description |
|---|---|
| ValueType |
The value type for series point values.
|
Available values:
| Name | Description |
|---|---|
| Value |
Indicates the series point value. Valid for all series except for Financial, RangeBar, SideBySideRangeBar, and RangeArea series.
| | Weight |
Indicates the Bubble series point weight (bubble size).
| | High |
Indicates the highest price of the Financial series point.
| | Low |
Indicates the lowest price of the Financial series point.
| | Open |
Indicates the opening price of the Financial series point.
| | Close |
Indicates the closing price of the Financial series point.
| | Value1 |
Indicates the first value of the RangeBar/SideBySideRangeBar or RangeArea series point.
| | Value2 |
Indicates the second value of the RangeBar/SideBySideRangeBar or RangeArea series point.
|
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