Flexmonster Software License Agreement (“Agreement”) has been revised and is effective as of January 8, 2025.
The following modifications were made:
The modified version of Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after January 8, 2025, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license or maintenance after the effective date of these modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
amcharts.getNumberFormatPattern(format: FormatObject): String
Converts the FormatObject to the amCharts number formatting string.
To learn how the number format is set in amCharts, see the Using Flexmonster number formatting in amCharts section.
Parameter/Type | Description |
---|---|
format FormatObject | The number format that is applied to measures in Flexmonster. |
A string that represents the amCharts number formatting string. For example: '$'#,###.00|'($'#,###.00')'
.
Applying the formatting to the root element:
root = am5.Root.new("amcharts-container");
root.numberFormatter.set(
"numberFormat",
pivot.amcharts.getNumberFormatPattern(rawData.meta.formats[0])
);
Applying the formatting to the chart's Value axis and tooltip:
// Get a FormatObject from Flexmonster
let numberFormat = pivot.amcharts
.getNumberFormatPattern(rawData.meta.formats[0]);
// Applying the formatting to the Value axis
valueAxis.numberFormatter = new am4core.NumberFormatter();
valueAxis.numberFormatter.numberFormat = numberFormat;
// ...
// Applying the formatting to the chart's tooltip
series.tooltipText =
'{name}: [bold]{valueY.value.formatNumber("' + numberFormat + '")}[/]';