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.
You can adjust the range of the X axis even if its a string value like your axis displayed there, and you don't have to use whole numbers either. So you could try things like this:
ultraChart1.Axis.X.RangeType = AxisRangeType.Custom;
ultraChart1.Axis.X.RangeMin = -0.25;
ultraChart1.Axis.X.RangeMax = 10;
Note however, you will need to discover what the maximum item number is in the set you are binding, and use that as the RangeMax. You can adjust the -0.25 value to adjust the amount of margin.