高图。如何给两条垂直线之间的区域加阴影?

时间:2020-11-06 09:42:37

标签: highcharts

Highcharts.chart('container', {
  title: {
    text: 'Lines'
  },
  series: [{
      name: 'Line A',
      data: [{x: 1, y: 0}, {x: 1,y: 5}],
    }, {
      name: 'Line B',
      data: [{x: 3,y: 0}, {x: 3,y: 5}]
    },
    {
      name: 'Some line',
      data: [{x: 0,y: 2}, {x: 5,y: 2}]
    }
  ]

});

示例-https://jsfiddle.net/bzguv643/

我有一些数据(水平线),我想用高线图遮挡2条垂直线之间的区域 enter image description here

结果应如下所示: enter image description here

0 个答案:

没有答案