I have a stacked column chart that looks like this....
Is there anyway to make it group together like this?
Hi DmgInc,
I would suggest you to set the ColumnSpacing property like this:
UltraChart1.ColumnChart.ColumnSpacing = 0;
Let me know if this helps.
I've tried that, but that squishes everything together.
I want it so "R285" and its 2 stacked columns of Execution & setup are grouped together, then a space, then "R290" and its 2 stacked columns of Execution & setup etc.
This could be accomplished by using the FillSceneGraph event to position each chart column seperately. Please refer to the attached sample.
If you have any further questions, please feel free to contact me.
Thanks! That was extremely helpful.
With that information I was able to achieve exactly what I was looking for. I also had to custom draw all the labels, but that wasn't too hard to do.
Hello DmgInc,
I'm glad to hear that. Please let me know if you have further questions.