ShowTopScale

<< Click to Display Table of Contents >>

 

ShowTopScale

Boolean If this property is set to True, the main Horizontal Axis is displayed on top of the grid. Otherwise, it is not displayed. Default value is False. The next script contains an example of using this property.

Sub CommandButton1_Click()
  Set Chart = Screen.Item("E3Chart1")
  Chart.ShowTopScale = Not Chart.ShowTopScale
End Sub

Was this page useful?