Skip to content Skip to sidebar Skip to footer

Formatting Tooltip Of Values >1000

I am using an ohlc highstock chart in my project. I have values in 4-5 digits. For example Open : 2717.35 High : 2719.5 Low : 2709.18 Close : 2712.97 SMA(50) : 26

Solution 1:

You need to set the thousands seperator. Like this:

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

Working JSFiddle example:https://jsfiddle.net/ewolden/72xr9qvL/5

Post a Comment for "Formatting Tooltip Of Values >1000"