如何将千位分隔符添加到Highcharts的Y轴?
这就是我所拥有的:
yAxis: [{ // Primary yAxis
labels: {
format: '{point.y:,.0f} €',
style: {
color: cor1
}
},
// more code....
这将返回错误:
未捕获的TypeError:无法读取未定义的属性“y”
答案 0 :(得分:5)
yAxis
和xAxis
使用{value}
:
{point.y}
and/or {point.x}
:
{x}
and/or {y}
:
因此,由于您要格式化yAxis
,{value}
应该按预期工作:
yAxis: {
labels: {
format: '{value:,.0f} €'
}
}
答案 1 :(得分:0)
如果您发现上述解决方案无效,请尝试添加以下内容:
Highcharts.setOptions({
lang: {
thousandsSep: ','
}
});