Group A Column Series with WPF Charting Toolkit

964 Views Asked by At

I got a Column Series that looks like this: enter image description here

As you can see i got lots of columns, that I need to group somehow. A group consists out of 1 shuttle and for each shuttle there are 5 nests. My preferred form of grouping would be a, the nest written underneath each column and the shuttle again underneath. Between groups there should be a vertical line or some space to separate them. If this isn't possible I would greatly appreciate any other suggestions.

1

There are 1 best solutions below

1
On BEST ANSWER

create a datatable with a column for each nest( so total five columns) , add five column series to the chart , DependentValueBinding to each column name, set ItemsSource to datatable( same for each column series).

Let me know if you want the code.