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

ScientificNotation Enum

Lists values used to specify scientific notation applied to numbers that axis labels display.

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

#Declaration

C#
public enum ScientificNotation

#Members

Name Description
None

A number is displayed according to AxisLabel.TextFormat, which you should set to #E+0 when you apply scientific notation to axis labels.

Logarithmic

A number is displayed as m×[base]ⁿ, where [base] is equal to the AxisLogarithmicOptions.Base property value.

E

A number is displayed as mEⁿ.

Normalized

A number is displayed as m×10ⁿ, where the exponent n is selected so that the coefficient m is at least 1 but less than 10.

#Related API Members

The following properties accept/return ScientificNotation values:

See Also