public Boolean IsAxisVisible(Axis a)
Remarks
This method returns a boolean value telling you if the axis you've entered in the parameter is visible or not.
Example
[C#]
For example to check if Right axes is visible you can simply do :
Steema.TeeChart.Chart myChart = tChart1.Chart;
MessageBox.Show(myChart.IsAxisVisible(tChart1.Axes.Right).ToString());
See Also
Chart Class | Chart Members | Steema.TeeChart Namespace