marco811 Report post Posted May 19, 2021 Hello I am trying to implement "formatNumberScale" option in timeseries chart but is not working. Still showing "k" for thousands. Thanks Promise.all([ fetch('https://s3.eu-central-1.amazonaws.com/fusion.store/ft/data/line-chart-with-time-axis-data.json'), fetch('https://s3.eu-central-1.amazonaws.com/fusion.store/ft/schema/line-chart-with-time-axis-schema.json') ]).then(function(res) { Promise.all([ res[0].json(), res[1].json() ]).then(function(res) { showChart(res[0], res[1]); }); }); function showChart(dataFetch, schemaFetch) { const dataStore = new FusionCharts.DataStore(); const dataSource = { chart: { "formatNumberScale": "0" }, caption: { text: "Sales Analysis" }, subcaption: { text: "Grocery" }, yaxis: [ { plot: { value: "Grocery Sales Value" }, format: { prefix: "$" }, title: "Sale Value" } ] }; dataSource.data = dataStore.createDataTable(dataFetch, schemaFetch); new FusionCharts({ type: "timeseries", renderAt: "chart-container", width: "100%", height: "500", dataSource: dataSource }).render(); } Share this post Link to post Share on other sites
Srishti Jaiswal Report post Posted May 20, 2021 Hi, You can disable the default formatting of the y-axis values to display the raw data in the chart. To disable the default formatting of the y-axis values, set the value of defaultFormat attribute to 0 under format object. Demo: http://jsfiddle.net/srishti_fc/xn6dzswh/18/ Reference: https://www.fusioncharts.com/dev/fusiontime/fusiontime-component/y-axis-in-fusiontime#automatic-number-formatting Thanks, Srishti Share this post Link to post Share on other sites
marco811 Report post Posted May 20, 2021 4 hours ago, Srishti Jaiswal said: Hi, You can disable the default formatting of the y-axis values to display the raw data in the chart. To disable the default formatting of the y-axis values, set the value of defaultFormat attribute to 0 under format object. Demo: http://jsfiddle.net/srishti_fc/xn6dzswh/18/ Reference: https://www.fusioncharts.com/dev/fusiontime/fusiontime-component/y-axis-in-fusiontime#automatic-number-formatting Thanks, Srishti Hi. I have solved the problem. Thank you Share this post Link to post Share on other sites
Srishti Jaiswal Report post Posted May 21, 2021 Welcome Share this post Link to post Share on other sites
Akshay Talwar Report post Posted July 9, 2021 Hi Nice question I am facing the same issue Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted July 9, 2021 @Akshay TalwarPlease refer to above shared solutions Share this post Link to post Share on other sites