HI All,
How to avoid decimals in X Axis bar graph.
Regards,
Vinod
Hi Vinod,
Hope you are doing well.
You will have to format chart elements by using Highcharts JSON.
Go to the AdvancedFormat Property of your Chart, Open Expression Editor window and put the below code
AdvancedFormat_Init(DataPointFormats:,DataSeriesFormats:,XAxisJSON:,YAxisJSON:,HighchartsJSON: "xAxis: { allowDecimals: false }," ) Supporting images:
Hope this help,
Thanks and Regards
Rahul
Hi Rahul,
Thanks for your inputs.
I have changed xAxis to yAxis since in OutSystems it is reverse.
AdvancedFormat_Init(DataPointFormats:,DataSeriesFormats:,XAxisJSON:,YAxisJSON:,HighchartsJSON: "yAxis: { allowDecimals: false }," )
Yup, Right
It is going to be reversed.
Thanks