MindFusion.Charting Programmer's Guide

BarChart.InnerLabelType Property

See Also
 





Gets or sets the type of labels drawn inside chart bars.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public LabelType InnerLabelType { get; set; }

Visual Basic  Copy Code

Public Property InnerLabelType As LabelType

 Property Value

One of the LabelType Enumeration values.

 Remarks

The property specifies what type of labels are drawn inside chart bars. The formatting of the labels is the same as the formatting of the axis, at which the bars are drawn. For formatting and appearance options of the axis, please check the AxisSettings class.

If InnerLabelType is set to LabelType.CustomText, the inner labels are set with InnerLabels. The position of the label in the bar is set with the InnerLabelAlignment property.

Bars can also have labels at the top. They are set with TopLabelType and TopLabels.

Default value for the InnerLabelType property is LabelType.Empty, that is, no labels are drawn.

 See Also