我需要用 2 个 yAxis 构建一个高图,一个在左侧(主要),一个在右侧(次要)。我无法完成这项工作。有什么想法我在这里做错或遗漏了吗?
这是jsfiddle:http: //jsfiddle.net/gsaray101/KX4AS/2/
我正在使用来自 highcharts 网站的示例:
yAxis: [{ // Primary yAxis
labels: {
format: '{value}ms',
style: {
color: '#89A54E'
}
},
title: {
text: 'response time',
style: {
color: '#89A54E'
}
}
}, { // Secondary yAxis
title: {
text: 'volume',
style: {
color: '#4572A7'
}
},
labels: {
format: '{value}',
style: {
color: '#4572A7'
}
},
opposite: true
}],