我的Highchart工具提示格式如下:
$(function() {
Highcharts.setOptions({
chart: {
style: {
fontFamily: "Trebuchet MS"
}
},
lang: {
thousandsSeparator: ','
}
});
// plot the chart
new Highcharts.Chart({
chart: {
renderTo: 'graphContainer',
type: 'area',
marginBottom: 110
},
tooltip: {
shared: true,
xDateFormat: '%Y-%m-%d',
headerFormat: '<b>{point.key}</b><br>',
pointFormat: '<span style="color:{point.color}">\u25CF</span> {series.name}: <b>${point.y:,.0f} m</b><br/>',
crosshairs: true
},
......
我知道“:,。0f”控制数字的格式,但我无法弄清楚如何在数千位而不是“”空格中添加“,”。