Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a chart like this

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

But the chart is in Microsoft Reporting and I want is in DotnetHighcharts.

When I search in Highcharts Demo, I found one similar chart but there's no group label (Male, Female).

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

share|improve this question
1  
what have you tried so far? show us some code which you have tried. – pavan Mar 6 at 9:09
this is as far as I can explore jsfiddle.net/pMA2H/155 but need to create another empty series and assign value false to showInLegend. I have hard time to do it because the chart is program in c# and no ShowInlegend properties plus all series and categories are dynamic. – Hayu Rahiza Mar 7 at 0:37

2 Answers

up vote 0 down vote accepted

There are many examples about highcharts groupped categories

Example1

Example2

Example3

define categories

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

assing category to group

data: [['Group1', 20],['Group1',30],['Group2', 35],['Group2', 25]]
},
share|improve this answer
Oh my god.. I just found this today. This is exactly what I want. I found this using your keyword "highcharts grouped categories". All this while I use different term to search. github.com/blacklabel/grouped_categories – Hayu Rahiza Mar 7 at 0:46
Before I found that, your Example1 and Example2 are good enough. – Hayu Rahiza Mar 7 at 0:47

Refer this link:

highcharts column labels

See the categories part in the fiddle below they have show the very good example of what you need:

Demo

use this

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

    }
},

or this

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

hope this might help you.

share|improve this answer
1  
:The categories part used in the code works for me. – jeev Mar 6 at 9:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.