How do you change the GridLines in the XamWebChart to any other color than the default color? Also, how do you turn off the vertical gridlines?
Thanks
Try using this code:
<igCA:XamChart> <igCA:XamChart.Axes> <igCA:Axis AxisType="PrimaryX"> <igCA:Axis.MajorGridline> <igCA:Mark Visible="False" /> </igCA:Axis.MajorGridline> </igCA:Axis> <igCA:Axis AxisType="PrimaryY"> <igCA:Axis.MajorGridline> <igCA:Mark Stroke="Red" /> </igCA:Axis.MajorGridline> </igCA:Axis> </igCA:XamChart.Axes>
You can read more about this here:
http://help.infragistics.com/NetAdvantage/WPF/2010.3/CLR4.0/?page=xamChart_Add_Grid_Lines_to_an_Axis.html