ChartDirector 7.1 (.NET Edition)

PlotArea.setGridWidth


Usage

[C#]public void setGridWidth(int hGridWidth [, int vGridWidth [, int minorHGridWidth [, int minorVGridWidth ]]]);
[VB]Public Sub setGridWidth(hGridWidth As Integer [, vGridWidth As Integer [, minorHGridWidth As Integer [, minorVGridWidth As Integer ]]])

Description

Sets the horizontal and vertical grid line width.

Arguments

ArgumentDefaultDescription
hGridWidth(Mandatory)The line width for the horizontal grid lines associated with major ticks.
vGridWidth-1The line width for the vertical grid lines associated with major ticks. -1 means the vertical grid line width is the same as hGridWidth.
minorHGridWidth-1The line width for the horizontal grid lines associated with minor ticks. -1 means the color is the same as hGridWidth.
minorVGridWidth-1The line width for the horizontal grid lines associated with minor ticks. -1 means the color is the same as vGridWidth.

Return Value

None