MindFusion.Charting Programmer's Guide

AxesChart.AltGridBrush Property

See Also
 





Gets or sets the alternative brush for drawing the chart's grid.

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

 Syntax

C#  Copy Code

public Brush AltGridBrush { get; set; }

Visual Basic  Copy Code

Public Property AltGridBrush As Brush

 Property Value

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

 Remarks

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

When the GridType is GridType.Custom the grid stripes are painted with HorGridBrushes and VertGridBrushes.

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

 See Also