有两个y轴。我的第二个y轴刻度没有显示。为什么呢?
{
"labels": {},
"opposite": true,
"min": 0,
"title": {
"text": "y2",
"style": {
"color": "LightCoral"
}
},
"index": 1
}
答案 0 :(得分:1)
它正在显示。但是,没有嘀嗒声,因为你没有绘制任何反对它的系列。在你的第二个系列中添加:
"color": "LightCoral",
"suffix": "€",
"tooltip": {
"valueSuffix": "€"
},
"_symbolIndex": 1,
"yAxis": 1 // ASSIGN series to it
更新了小提琴here。
答案 1 :(得分:0)
您还可以使用linkedTo
选项http://jsfiddle.net/upBs2/4/