0

我想创建一个这样的图表

http://msdn.microsoft.com/en-us/library/Aa964128.moressrschartsfig01c(l=en-US,v=sql.90).gif

但图表在 Microsoft Reporting 中,我想要在 DotnetHighcharts 中。

当我在 Highcharts Demo 中搜索时,我发现了一张类似的图表,但没有组标签(男、女)。

http://www.highcharts.com/demo/column-stacked-and-grouped

4

3 回答 3

1

关于 highcharts 分组类别的例子很多

示例 1

示例 2

示例 3

定义类别

xAxis: [{
    categories: ['Australia', 'Germany', 'Australia', 'Germany'],

将类别分配给组

data: [['Group1', 20],['Group1',30],['Group2', 35],['Group2', 25]]
},
于 2013-03-06T09:10:26.473 回答
1

参考这个链接:

highcharts 列标签

请参阅下面小提琴中的类别部分,它们显示了您需要的非常好的示例:

演示

用这个

xAxis: {
    categories: ["Location A","Location B","Location C"],
    title: {
        text: "Location"

    }
},

或这个

xAxis: [{
categories: [{
name: 'fruits'
children: ['orange', 'mango']
},{
name: 'birds'
children: ['eagle', 'parrot']
}]
}]

希望这可以帮助你。

于 2013-03-06T09:16:14.283 回答
0

Black Label 推出了用于分组类别的 Highcharts 插件。

见这里https://github.com/blacklabel/grouped_categories/

于 2013-11-28T06:41:02.753 回答