突出显示高图中的Y轴范围

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

如何在line高图中将Y轴范围(例如80%到90%之间)突出显示为绿色范围?

我搜索了此内容,但无论是在网络上还是在highcharts文档中都没有找到。

highcharts
1个回答
1
投票

我不确定您的想法,有些图像可能有用,但是我猜您可以通过使用plotBand功能或zones突出显示某个范围。

  • PlotBands:

演示:https://jsfiddle.net/BlackLabel/mnd16ok0/

代码:

  yAxis: {
    plotBands: [{
        from: 100000,
      to: 125000,
      color: 'green'
    }]
  },

API:https://api.highcharts.com/highcharts/yAxis.plotBands

  • 区域:

演示:https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/css/color-zones/

API:https://api.highcharts.com/highcharts/series.line.zones

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