MindFusion.Charting Programmer's Guide

AxesChart.GridType Property

See Also
 





Gets or sets the type of the chart grid.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public GridType GridType { get; set; }

Visual Basic  Copy Code

Public Property GridType As GridType

 Property Value

One of the GridType Enumeration members.

 Remarks

Grid can be drawn at all charts with axes. When the grid is of type GridType.Chess its width is set by GridWidth.

When the grid is custom, the positions of grid lines are specified with HorGridPoints and VertGridPoints. For other grid types, except GridType.None, the width is calculated automatically based on the scale of the axes.

Default value for the GridType property is GridType.None.

 See Also