MindFusion.Charting Programmer's Guide

AxesChart.YGridLabels Property

See Also
 





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

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

 Syntax

C#  Copy Code

public IList YGridLabels { get; }

Visual Basic  Copy Code

Public ReadOnly Property YGridLabels As IList

 Property Value

An object of type .NET IList.

 Remarks

Custom grid labels are drawn when the GridType is set to GridType.Custom. They can be drawn at grid lines or in the middle of grid segments - it depends on the GridLabelsAtLines property. The position of the grid lines is specified with the HorGridPoints property. The orientation of the grid labels is set with YGridLabelsOrientation.

The labels can be drawn with pointers as specified by the GridLabelPointer property.

Default value for the YGridLabels property is an empty IList.

 See Also