MindFusion.Charting Programmer's Guide

AxisSettings.TitleLabel Property

See Also
 





Gets or sets the title of the chart axes.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public string TitleLabel { get; set; }

Visual Basic  Copy Code

Public Property TitleLabel As String

 Property Value

A string that represents the label.

 Remarks

The title label can be drawn in several lines using the "\n" symbol. It is drawn with TitleLabelFont.

The position, orientation and alignment of the TitleLabel are set with TitleLabelPosition, TitleLabelOrientation and TitleLabelAlignment.

The TitleLabel is drawn always after the labels for the axis, which means that their alignment is considered for it too (see LabelAlignment).

Default value for the TitleLabel property is an empty string.

 See Also