gpt4 book ai didi

jquery - Highcharts : how to add commas to output to intergers

转载 作者:行者123 更新时间:2023-12-01 07:46:48 27 4
gpt4 key购买 nike

我有以下代码,可以从 JSON 数据生成基本面积图,在图表上我希望能够显示逗号分隔的数字而不是整个整数,即图表中的所有数字都应用逗号显示为 < strong>483,533,30 而不仅仅是 48353330。

我按照各种示例中的建议添加了这一点,但似乎不起作用

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

我的工作代码可以在 fiddle 中看到

$(document).ready(function() {
Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});

var options = {
chart: {
renderTo: 'container',
type: 'area',
marginRight: 130,
marginBottom: 25
},
title: {
text: 'Deposit Institution',
x: -20 //center
},
subtitle: {
text: '',
x: -20
},
xAxis: {
categories: []
},
yAxis: {
title: {
text: 'Amount'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': $'+ this.y;
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -10,
y: 100,
borderWidth: 0
},
series: []
}

$.getJSON("data1.json", function(json) {
options.xAxis.categories = json[0]['data'];
options.series[0] = json[1];
options.series[1] = json[2];
chart = new Highcharts.Chart(options);
});


});

最佳答案

tooltip: {
formatter: function() {
return '<b>' + this.series.name + '</b><br/>' +
this.x + ': $' + Highcharts.numberFormat(this.y, 0, '', ',');
}
}

尝试将 Highcharts.numberFormat 添加到工具提示格式化程序函数中 http://api.highcharts.com/highcharts#Highcharts.numberFormat

关于jquery - Highcharts : how to add commas to output to intergers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36161092/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com