我想创建一个这样的图表
http://msdn.microsoft.com/en-us/library/Aa964128.moressrschartsfig01c(l=en-US,v=sql.90).gif
但图表在 Microsoft Reporting 中,我想要在 DotnetHighcharts 中。
当我在 Highcharts Demo 中搜索时,我发现了一张类似的图表,但没有组标签(男、女)。
我想创建一个这样的图表
http://msdn.microsoft.com/en-us/library/Aa964128.moressrschartsfig01c(l=en-US,v=sql.90).gif
但图表在 Microsoft Reporting 中,我想要在 DotnetHighcharts 中。
当我在 Highcharts Demo 中搜索时,我发现了一张类似的图表,但没有组标签(男、女)。
参考这个链接:
请参阅下面小提琴中的类别部分,它们显示了您需要的非常好的示例:
用这个
xAxis: {
categories: ["Location A","Location B","Location C"],
title: {
text: "Location"
}
},
或这个
xAxis: [{
categories: [{
name: 'fruits'
children: ['orange', 'mango']
},{
name: 'birds'
children: ['eagle', 'parrot']
}]
}]
希望这可以帮助你。
Black Label 推出了用于分组类别的 Highcharts 插件。