Highcharts Ganttchart(或XRange)组y轴元素

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

我需要在y轴上对元素进行分组,并且不确定如何实现。可以使用x-range或gantt,可以使用category,grid或treegrid,以最佳效果为准。

这里是一个例子

enter image description here

highcharts gantt-chart
1个回答
0
投票

您可以使用Grouped Categories插件:

yAxis: {
    ...,
    labels: {
        groupedOptions: [{
            rotation: -90,
        }],
    },
    categories: [{
        name: "Fruit",
        categories: ["Apple", "Banana", "Orange"]
    }]
}

实时演示: http://jsfiddle.net/BlackLabel/6m4e8x0y/4732/

文档: https://www.highcharts.com/plugin-registry/single/11/Grouped-Categories

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