Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SeriesDataType Enum

Lists values that specify types of data that series can display.

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

#Declaration

C#
public enum SeriesDataType

#Members

Name Description
Numeric

Indicates the data type for a series that requires a numeric argument and one value for a data point. Valid for Area, Line, Bar, and Point series.

DateTime

Indicates the data type for a series that requires a date-time argument and one value for a data point. Valid for Area, Line, Bar, and Point series.

Qualitative

Indicates the data type for a series that requires a string argument and one value for a data point. Valid for Area, Line, Bar, and Point series.

RangeNumeric

Indicates the data type for a series that requires a numeric argument and two values (Value1 and Value2) for a data point. Valid for RangeBar, SideBySideRangeBar, and RangeArea series.

RangeDateTime

Indicates the data type for a series that requires a date-time argument and two values (Value1 and Value2) for a data point. Valid for RangeBar, SideBySideRangeBar, and RangeArea series.

RangeQualitative

Indicates the data type for a series that requires a string argument and two values (Value1 and Value2) for a data point. Valid for RangeBar, SideBySideRangeBar, and RangeArea series.

WeightedNumeric

Indicates the data type for a Bubble series that requires a numeric argument and two values (Value and Weight) for a data point.

WeightedDateTime

Indicates the data type for a Bubble series that requires a date-time argument and two values (Value and Weight) for a data point.

WeightedQualitative

Indicates the data type for a Bubble series that requires a string argument and two values (Value and Weight) for a data point.

Financial

Indicates the data type for a Financial series that requires a date-time argument and four values (Open, High, Low, and Close prices) for a data point.

See Also