MindFusion.Charting Programmer's Guide

BarChart.TopLabelType Property

See Also
 





Gets or sets the type of labels drawn at the top of chart bars.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public LabelType TopLabelType { get; set; }

Visual Basic  Copy Code

Public Property TopLabelType As LabelType

 Property Value

One of the LabelType Enumeration values.

 Remarks

The property specifies what labels are drawn at the top of chart bars. For appearance, format and style settings, please check the AxisSettings class. The style settings for vertical bars are regulated by XAxisSettings, the style settings for horizontal bars - by YAxisSettings.

The custom text for the top labels is set with the TopLabels property.

Bars can also have inner labels. They are set with InnerLabelType and InnerLabels.

Default value for the TopLabelType property is LabelType.Empty, in this case, no labels are drawn.

 See Also