Page 1 of 1

Turn off grid lines for Right Axes

Posted: Mon Jun 21, 2010 3:12 pm
by 16056172
I am using the WPF version of the TeaChart.

My intent is turn off the grid lines for Right axes. My code for the fastline series apppears like this and is not working:

this._flPerfStyle.VertAxis = VerticalAxis.Right;
this.perfChart.Axes.Right.StartPosition = 0;
this.perfChart.Axes.Right.EndPosition = 80;
this.perfChart.Axes.Right.Grid.Visible = false;

Please advise.

Regards,
Vish

Re: Turn off grid lines for Right Axes

Posted: Mon Jun 21, 2010 4:37 pm
by 16056172
Issue is resolved.

It worked fine, when I placed the earlier code in the Loaded event of the control instead of in the constructor of the UserControl.