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
I am following up to see if you have any further questions with adjusting the bars in the chart?
Update me if you need any further assistance.
I was able to see the behavior you described. You can set the LineThickness of Y axis to 0. The following line of code will achieve this:
this.UltraChart1.Axis.Y.LineThickness = 0;