highchartsbubble-chart

How to give proper number denominations in highcharts bubble chart


I am using bubble chart from highcharts. If i hover over a bubble it shows the tooltip information.In that, the "sugar intake" value is appearing with a space in between to represent denominations as 9 500.

Is there a way to change that to 9,500 ?

https://jsfiddle.net/t48xyg9o/1/ Please refer this image bubblechart


Solution

  • Following the documentation, you can change the thousand separator like this

    Highcharts.setOptions({
      lang: {
        thousandsSep: ','
      }
    });