Charting for WPF Programmer's Guide

AxesChart.YLabels Property

See Also
 


Gets or sets custom labels for the Y-axis.

Namespace: MindFusion.Charting.Wpf
Assembly: Charting

 Syntax

C#  Copy Code

public IList YLabels { get; set; }

Visual Basic  Copy Code

Public Property YLabels As IList

 Property Value

A list with the labels. Default value is an empty list.

 Remarks

YLabels are drawn when the value of the YAxisSettings.LabelType property is set to LabelType.CustomText. The list can hold any type of objects. Non-string objects are converted to strings using the standard .NET ToString() method.

 See Also