Highcharts时间轴序列定位

问题描述 投票:0回答:1

试图在同一图表中具有基于日期的line图表和timeline系列。有没有办法将时间轴系列放置在折线图的顶部或底部?

当前,时间轴系列出现在图表元素的垂直中心。我尝试在时间轴系列中添加带有transform属性的自定义CSS类,但在页面调整大小时找不到合适的值。

javascript charts highcharts
1个回答
1
投票

您可以为第二个系列创建单独的轴:

series: [{
    type: 'timeline',
    data: [1, 2, 3, 4, 5, 6]
}, {
    type: 'line',
    yAxis: 1,
    data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175]
}],
yAxis: [{
    height: '20%'
}, {
    height: '40%',
    top: '50%',
    offset: 0
}]

实时演示: http://jsfiddle.net/BlackLabel/bcur9tkq/

API参考: https://api.highcharts.com/highcharts/yAxis

© www.soinside.com 2019 - 2024. All rights reserved.