Highcharts xrange时间轴重叠

时间:2016-09-16 09:04:35

标签: javascript highcharts gantt-chart

我正在使用带有xrange插件的Highcharts,如fiddle here中所示。

如数据对象所示,我有两个重叠区域:

data: [{
            x: Date.UTC(2015, 0, 1),
            x2: Date.UTC(2020, 11, 2),
            y: 0
        }
        ,{
            x: Date.UTC(2015, 0, 1),
            x2: Date.UTC(2020, 5, 2),
            y: 0
        }
        , {
            x: Date.UTC(2015, 0, 2),
            x2: Date.UTC(2020, 11, 5),
            y: 1
        }]

是否有一种Highcharts方式来对一行' y行进行分组。根据rowLabel,如在谷歌图表中所做的那样,如下所示?

 var options = {
          **timeline: { groupByRowLabel: true},**
          backgroundColor: 'white',
          avoidOverlappingGridLines: true,
          tooltip: { isHtml: false }
      };

我想创建它而不创建新行(例如y:3),因为这会导致数据集中的间距,交替颜色和视觉混淆。

编辑:这是我要找的: enter image description here

0 个答案:

没有答案