See image below, i want to take existing bars and center them in the chart like i've drawn, how can i accomplish this?
see image below:
Hello Scott,
One possible approach to add space on the top and bottom of the Bar is to set Margin property of Y axis. The following lines of code will achieve this:
this.UltraChart1.Axis.Y.Margin.Near.Value = 10;
this.UltraChart1.Axis.Y.Margin.Far.Value = 20;
Hope this helps.
Thanks,
Bhadresh