Knowledgebase
Scientific or Engineering Notation
Posted by Admin - on 13 February 2019 12:21 PM
|
|
All numeric axis types in SciChart support Scientific Notation with superscript. This is especially useful for LogarithmicAxis, because it allows to show logarithmic base that is used.
Setting Scientific Notation places the Exponent in a superscript text-label with the following three options:
C#: var axis = new NumericAxis() { ScientificNotation = ScientificNotation.Normalized, TextFormatting = "#.#E+0" }; XAML: <!-- ScientificNotation.Normalized is used in conjunction with E string format to achieve superscript --> <s:NumericAxis ScientificNotation="Normalized" TextFormatting="#.#E+0"/> Further ReadingFor more info about Axis Label Formatting, please refer to our documentation: Usage and impact of different Notation types is demonstrated in the Logarithmic Axis Example. | |
|