Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
30
UltraChart last label cut off
posted

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?

Parents
No Data
Reply
  • 2155
    Verified Answer
    Offline posted

    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;

Children