I’m trying a UltraChart but there is problem that the last label(rightmost one) cut off by edge of control.
I tried using code “ultraChart1.Axis.Y.Extent” but It only changes a left side but not right side.
How can I Show full last label?
Thanks for your help. I didn't know about Y2 axis. I solved the problem.
Hello,
Thank you for posting in Infragistics Forum.
The space on the right-hand size of the chart is controlled by Y2 axis, so can you please try the following?
ultraChart1.Axis.Y2.Visible = true;ultraChart1.Axis.Y2.Extent = 70;
You might want to try WrapText property as well.
ultraChart1.Axis.X.Labels.WrapText = true;