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
1401
Half Icon visible for line chart starting at Y-Axis
posted

Hi,

When the line chart is plotted. The data point icon is not fully visible at Y-Axis unlike the other data point marked in green circle. Please refer to image in zip file attached with this request.

Thanks,

Kumar

Y Axis point issue.zip
Parents
  • 30692
    Suggested Answer
    Offline posted

    To my knowledge it is by design that the plot area not be allowed to draw over the axes.

    That being said, if you don't want the point markers to be occluded by the axes, one way would be to set some margins on your axes, like so:

    ultraChart1.Axis.X.Margin.Far.Value = 3;

    ultraChart1.Axis.X.Margin.Near.Value = 3;

    ultraChart1.Axis.Y.Margin.Far.Value = 3;

    ultraChart1.Axis.Y.Margin.Near.Value = 3;

    Does that help or are you looking for a different solution?

    -Graham

Reply Children