I use ScatterChart.
I some of the point I show, are have positive y value, and some negetive.
I want to show the line of the x axis - a stright horizontal line, that shows the value of y=0;
Hello,
Based on functionality you mentioned, I would recommend you to set ZeroAligned property of the chart to true as shown below:
UltraChart1.Data.ZeroAligned = true;
Refer to the documentation on the link below for ZeroAligned Property:
<http://help.infragistics.com/NetAdvantage/ASPNET/2012.2/CLR4.0/?page=Infragistics4.WebUI.UltraWebChart.v12.2~Infragistics.UltraChart.Resources.Appearance.DataAppearance~ZeroAligned.html>
I hope this helps.