MindFusion.Charting Programmer's Guide

LineChart.Labels Property

See Also
 





Gets or sets custom labels drawn at chart data points.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList Labels { get; set; }

Visual Basic  Copy Code

Public Property Labels As IList

 Property Value

A list that holds other lists with the labels for each data series.

 Remarks

The labels are drawn at line data points, scatters or bubbles depending on the chart type. They are drawn when the LabelType is set to LabelType.CustomText.

Default value for the Labels property is an empty IList object.

 See Also