Hi all,
I am facing a problem with the winchart component. I have a series of points plotted in the graph. The y-axis values are numerics and the x-axis values are strings that represent a date in a MMM-YYYY format. Each line can have even up to 600 point. Obviously the x-axis should not display the values for all points, but instead I am trying to find how to display a pre-defined set of points (e.g. 10). Is this possible? Thanks
make sure you have followed these steps tomake the x-axis a time axis: http://help.infragistics.com/Help/NetAdvantage/NET/2008.3/CLR2.0/html/Chart_Display_Data_on_a_Time_Scale_Axis.html
if this is the case, majorgridlines should be displayed.
I did this setting earlier still its not showing majorgridlines on x-axis
the pictured spline chart uses a time axis, which changes the way labels and gridlines are drawn. the default settings for spline chart use a string axis, so the only location you can draw gridlines at is at each point.
In above spline chart you have drawn majorgridlines on x-axis....how you draw these lines on tickmarkinterval only....
this.Axis.X.MajorGridLines.Visible=true;
but I am not getting these lines on my graph....also when i am setting
this.Axis.X.MinorGridLines.Visible=true;
i am getting lines for all the datapoints which i dont want.....
Finally sorted it out. I had to set the EndStyle, StartStyle and MidPointAnchors to NoAnchor to remove the dots. Apparently, the large "black dots" is a..."feature" of spline chart