如何在 highcharts 气泡图中给出正确的数字面额
How to give proper number denominations in highcharts buuble chart
我正在使用 highcharts 的气泡图。如果我将鼠标悬停在气泡上,它会显示工具提示 information.In,"sugar intake" 值与中间的 space 一起出现,表示面额为 9 500。
Is there a way to change that to 9,500 ?
https://jsfiddle.net/t48xyg9o/1/
请参考这张图片
bubblechart
在 documentation 之后,您可以像这样更改千位分隔符
Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});
我正在使用 highcharts 的气泡图。如果我将鼠标悬停在气泡上,它会显示工具提示 information.In,"sugar intake" 值与中间的 space 一起出现,表示面额为 9 500。
Is there a way to change that to 9,500 ?
https://jsfiddle.net/t48xyg9o/1/ 请参考这张图片 bubblechart
在 documentation 之后,您可以像这样更改千位分隔符
Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});