Skip to content

SVGraph_ShowGrid()

CapnOdin edited this page Jan 11, 2018 · 4 revisions

Sets the visibility of the grid.

SVGraph_ShowGrid(Bool)

Parameters

Bool

A boolean determining the visibility of the grid.

To make the grid visible set this parameter to True.

To hide the grid set this parameter to False.

Remarks

The grid is always generated even when hidden.

Example

; Shows the grid
Gui, Add, ActiveX, vIE, Shell.Explorer
SVGraph_Attach(IE)
SVGraph_Start()
SVGraph_Chart(700, 365, 40)
SVGraph_SetAxes(-10, 10, -1, 1)
SVGraph_ShowGrid(True)

Clone this wiki locally