Highcharts - 多轴排序
Highcharts - multiple axial ordered
Highcharts 是否有(或正在处理)像这样的多轴?
https://www.fusioncharts.com/charts/line-area-charts/line-chart-with-multiple-axes-and-series?framework=javascript
是的,他们有。事实上,我们有一个轴数组,所以我们可以有几个。
API 参考文献:
https://api.highcharts.com/highcharts/xAxis
https://api.highcharts.com/highcharts/yAxis
演示:
https://jsfiddle.net/eu6omtg1/
yAxis: [{}, {
opposite: true
}, {}, {
opposite: true
}],
Highcharts 是否有(或正在处理)像这样的多轴? https://www.fusioncharts.com/charts/line-area-charts/line-chart-with-multiple-axes-and-series?framework=javascript
是的,他们有。事实上,我们有一个轴数组,所以我们可以有几个。
API 参考文献:
https://api.highcharts.com/highcharts/xAxis
https://api.highcharts.com/highcharts/yAxis
演示:
https://jsfiddle.net/eu6omtg1/
yAxis: [{}, {
opposite: true
}, {}, {
opposite: true
}],