Not sure, but looking at the plotly (where the Mendix Charts is bases upon) documentation,
this might help you: https://plot.ly/javascript/reference/#scatter-marker-colorbar-separatethousands
or
https://plot.ly/javascript/reference/#scatter-marker-colorbar-tickformat
In any case; Plotly is the chart library underneath the Mendix charts, so take a look at their documentation!
Hi Mayhan,
The specific plotly property you are interested in is separatethousands. This is a Boolean that will group your digits as outlined in the plotly documentation. When combined with the rounding solution outlined in
you will get the full solution. It will look something like:{ "font": { ……} "yaxis" : { "zerolinewidth": 1, "zerolinecolor": "black", "hoverformat": ".0f", "separatethousands: "true"}….
To experiment with new properties quickly using Mendix Charts, don't forget to enable 'Developer' mode on the 'Advanced' tab of your chart. This will give you a live editing tab for your plotly chart where you can try out new properties. Anything in the plot.ly Javascript reference documentation should be yours to explore and try.
Good luck!