我有一个图表,其中包含两种组合图表类型,即行和列。我想,如下图所示,让我的柱形图位于底部,我的折线图高一点,折线图标签也开始高亮起来。 我想要这样的东西:
yAxis: labels{y: -100}
我的问题是这只会移动标签,而不是图表数据。
到目前为止我的尝试可以在这里找到:http://jsfiddle.net/32r7rctt/2/
答案 0 :(得分:1)
可以设置' height'和' top' yAxis的属性。
示例:https://jsfiddle.net/mtvy24rj/1/
yAxis: [{
height: '70%',
top: '0%'
}, {
title: {
text: null
},
height: '30%',
top: '70%',
labels: {
enabled: false
},
}],