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
Turn off grid lines for Right Axes
Re: Turn off grid lines for Right Axes
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.
It worked fine, when I placed the earlier code in the Loaded event of the control instead of in the constructor of the UserControl.