我在项目中使用ohlc高库存图表。我的值是4-5位数字。例如
Open : 2717.35
High : 2719.5
Low : 2709.18
Close : 2712.97
SMA(50) : 2677.4904
SMA(200) : 2627.7230
Volume : 3368690000
在图表的工具提示中,我想要这些值(加逗号)
Open : 2,717.35
High : 2,719.5
Low : 2,709.18
Close : 2,712.97
SMA(50) : 2,677.4904
SMA(200) : 2,627.7230
Volume : 3,368,690,000
但是对于4位数的值,工具提示看起来像这样
4位数字值中有一个空格。有什么办法格式化它,使其像我上面提到的那样来?图表中我也有一些SMA系列和体积系列。有没有办法使用它来格式化值?
我的高价期权
{
colors:Global.colors,
rangeSelector: {
selected: 1
},
title: {
text: ''
},
xAxis: {
crosshair: true
},
yAxis: [
{
labels: {
align: 'right',
x: -3
},
height: '60%',
lineWidth: 2,
resize: {
enabled: true
},
}, {
labels: {
align: 'right',
x: -3
},
top: '65%',
height: '35%',
offset: 0,
lineWidth: 2
}],
tooltip: {
split: true,
distance: 50,
padding: 2,
},
credits: {
enabled: false
},
legend: {
enabled: false
},
plotOptions: {
series: {
marker: {
enabled: false
}
},
}
}
注意:我正在从服务器获取数据,因此我将在http调用完成后在系列中设置数据。
答案 0 :(得分:2)
您需要设置thousands seperator。像这样:
Highcharts.setOptions({lang: {thousandsSep: ','}})
工作中的JSFiddle示例: https://jsfiddle.net/ewolden/72xr9qvL/5