IAxis.AxisType
IAxis
property AxisType: EAxisType;
Type Library
TeeChartx
Description
The AxisType property may be used to determine the Axistype when accessing an axis via a Chart event.
Example [Visual Basic]:
This code shows a message describing which axis has been clicked upon.
Private Sub TChart1_OnClickAxis(ByVal Axis As Long, ByVal Button As TeeChart.EMouseButton, ByVal Shift As TeeChart.EShiftState, ByVal X As Long, ByVal Y As Long)
MsgBox Axis
End Sub
Please refer to ENum Constants for the output of this example.