MindFusion.Charting Programmer's Guide

LineChart.Labels Property

See Also
 





Gets or sets custom labels drawn at chart data points.

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

 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 scatter 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