It is possible to combine clustered and stacked column or bar graphs.
To do that, create a stacked column chart like you would normally do. Then remove individual graphs from the stack by setting their "stackable" attribute to false:
graph.stackable = false;
Here's the working demo.
Comments