左边的高图表和右边的另一个图表是否有可能在高价图表中有2个yAxis?
由于
答案 0 :(得分:4)
一个非常简单的例子:
首先,你必须创建新的yAxis并设置它的位置。
{
title: {
text: 'Other data panel'
},
top: 300,
height: 100,
offset: 0,
lineWidth: 2,
opposite: true
}
然后,当你创建你的系列时,你将放置它的yAxis。
{
type: 'column',
name: 'Other',
data: otherData,
yAxis: 2,
dataGrouping: {
units: groupingUnits
}
}
你可以看到它working here。