ShowLeftScale

<< Click to Display Table of Contents >>

 

ShowLeftScale

Boolean If this property is set to True, the main Vertical Axis is displayed on the left side of the grid. Otherwise, it remains invisible. The next script contains an example of using this property.

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

Was this page useful?