Highcharts - 显示堆栈标签

时间:2013-03-06 09:03:07

标签: highcharts

我想创建一个这样的图表

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

但该图表位于Microsoft报告中,我想要的是DotnetHighcharts。

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

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

3 个答案:

答案 0 :(得分:1)

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

Example1

Example2

Example3

定义类别

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

将类别分配给组

data: [['Group1', 20],['Group1',30],['Group2', 35],['Group2', 25]]
},

答案 1 :(得分:1)

请参阅此链接:

highcharts column labels

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

Demo

使用此

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

    }
},

或者

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

希望这可以帮到你。

答案 2 :(得分:0)

Black Label推出了针对分组类别的Highcharts插件。

请参阅此处https://github.com/blacklabel/grouped_categories/