MindFusion.Charting Programmer's Guide

AxesChart.YGridLabelBrushes Property

See Also
 





Gets or sets the brushes for drawing custom grid labels at the Y-axis.

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

 Syntax

C#  Copy Code

public BrushCollection YGridLabelBrushes { get; set; }

Visual Basic  Copy Code

Public Property YGridLabelBrushes As BrushCollection

 Property Value

 Remarks

The property specifies the brushes for drawing custom grid labels at the Y-axis. If the BrushCollection is empty, YAxisSettings.LabelBrush is used for drawing the grid labels. The property is used only when the GridType is set to GridType.Custom and HorGridPoints is not an empty list. The labels are set with YGridLabels.

If the brushes are less than the grid labels, the control uses them in a cycle.

Default value for the YGridLabelBrushes property is an empty BrushCollection.

 See Also