gpt4 book ai didi

javascript - 如何在数字之间添加逗号(作为标签)

转载 作者:行者123 更新时间:2023-11-28 19:00:05 28 4
gpt4 key购买 nike

我正在处理 Highcharts 。我想在数字之间添加逗号(作为标签)。我正在使用 Highcharts http://jsfiddle.net/xpLgj7n5/ enter image description here

如图所示,0和7之间有间隙。我明白这一点,因为数字代表千。我需要在它们之间添加逗号 ","。当我更改数据时,我需要显示这样的数字"10,700"我这样改变数据 数据:[10,700, 31,00, 63,500, 20,300, 2,000]

什么也没发生。

$(function () {
$('#container').highcharts({
chart: {
type: 'bar'
},
title: {
text: 'Historic World Population by Region'
},
subtitle: {
text: 'Source: <a href="https://en.wikipedia.org/wiki/World_population">Wikipedia.org</a>'
},
xAxis: {
categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'],
title: {
text: null
}
},
yAxis: {
min: 0,
title: {
text: 'Population (millions)',
align: 'high'
},
labels: {
overflow: 'justify'
}
},
tooltip: {
valueSuffix: ' millions'
},
plotOptions: {
bar: {
dataLabels: {
enabled: true
}
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -40,
y: 80,
floating: true,
borderWidth: 1,
backgroundColor: ((Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'),
shadow: true
},
credits: {
enabled: false
},
series: [{
name: 'Year 1800',
data: [10700, 3100, 63500, 20300, 2000]
}]
});
});

最佳答案

引用documentation

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

Fiddle

关于javascript - 如何在数字之间添加逗号(作为标签),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32752650/

28 4 0