MindFusion.Charting Programmer's Guide

AxesChart.Y2GridLabels Property

See Also
 





Gets or sets the labels drawn at the Y2-axis in custom grids.

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

 Syntax

C#  Copy Code

public IList Y2GridLabels { get; }

Visual Basic  Copy Code

Public ReadOnly Property Y2GridLabels As IList

 Property Value

A value of type .NET IList.

 Remarks

Y2GridLabels are drawn when the GridType is GridType.Custom, the HorGridPoints and Y2Data properties are not empty lists. The labels are drawn at grid lines or in the middle of the grid segments as stated by the GridLabelsAtLines property.

When the brushes are less than the labels, they are used in cycle. If no brushes are set, Y2AxisSettings.LabelBrush is used instead.

Default value of Y2GridLabels is an empty IList.

 See Also