如何在高图的甘特图中填充具有特定颜色的条之间的空白区域?

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

当前:

预期一:

有没有办法用高图中的特定颜色填补这个空白,我在这里使用图表类型xrange感谢评论中的预先代码链接

highcharts gantt-chart
1个回答
0
投票

最简单的解决方案是使用yAxis plotBands

    plotBands: [{
        from: -0.045,
        to: 0.04,
        color: 'red'
    }]

现场演示:http://jsfiddle.net/BlackLabel/z10pjmcr/

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