MindFusion.Charting Programmer's Guide

AxesChart.GridBrush Property

See Also
 





Gets or sets the brush for filling odd grid stripes.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public Brush GridBrush { get; set; }

Visual Basic  Copy Code

Public Property GridBrush As Brush

 Property Value

A MindFusion.Drawing.Brush object that represents the grid brush.

 Remarks

GridBrush is used for filling the odd grid stripes when the GridType is not GridType.None or GridType.Custom. The even grid stripes are filled with AltGridBrush. The grid stripes are drawn with the GridPen.

Grid stripes in custom grids are painted with HorGridBrushes and VertGridBrushes.

Default value for the GridBrush is null (no brush).

The border around the grid can be specified through PlotAreaOutlinePen.

 See Also