Search
Axis.numberFormat Property
See Also
 






Gets or sets the number format of coordinate labels.

Namespace: MindFusion.Charting
File: Axis.js

 Syntax

JavaScript  Copy Code

get numberFormat() {}

 Property Value

Type: Intl.NumberFormat

 Example

JavaScript  Copy Code
axis.numberFormat = new Intl.NumberFormat("en-US", {
    minimumIntegerDigits: 1,
    minimumFractionDigits: 0,
    maximumFractionDigits: 2});

 See Also