HorGrid

<< Click to Display Table of Contents >>

 

HorGrid

Enum Determines the line type applied to an E3Chart's horizontal grid. The available options are described on the next table.

Available options for HorGrid

Option

Description

0 - Solid

Applies a solid line on an E3Chart's horizontal grid

1 - Dash

Applies a dashed line on an E3Chart's horizontal grid

2 - Dot

Applies a dotted line on an E3Chart's horizontal grid (default)

3 - Dashdot

Applies a dash-dot line on an E3Chart's horizontal grid

4 - Dashdotdot

Applies a dash-dot-dot line on an E3Chart's horizontal grid

5 - Invisible

Applies an invisible line on an E3Chart's horizontal grid

 

Example:

Sub CommandButton1_Click()
  Set E3Chart1 = Screen.Item("E3Chart1")
  Old = E3Chart1.HorGrid
  For i = 0 To 5
    E3Chart1.HorGrid = i
    MsgBox "E3Chart1.HorGrid =" & CStr(i)
  Next
  MsgBox "Return"
  E3Chart1.HorGrid = Old
End Sub

Was this page useful?