如何在highcharts的甘特图中用特定颜色填充条形之间的空白space?
How to fill the blank space between the bars with specific color in gantt chart of highcharts?
当前:
预期一:
有什么方法可以用高图表中的特定颜色来填补这个空白,我在这里使用图表类型 xrange
在此先感谢评论
中的代码link
最简单的解决方案是使用 yAxis plotBands
:
plotBands: [{
from: -0.045,
to: 0.04,
color: 'red'
}]
当前:
预期一:
有什么方法可以用高图表中的特定颜色来填补这个空白,我在这里使用图表类型 xrange 在此先感谢评论
中的代码link最简单的解决方案是使用 yAxis plotBands
:
plotBands: [{
from: -0.045,
to: 0.04,
color: 'red'
}]