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
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
Hi Graham,
Thanks for reply. We tried as suggested. The X and Y axis do not extend to meet at origin. As shown in the image attached.
Please suggest.