MindFusion.Charting Programmer's Guide

AxisSettings.TitleLabelPosition Property

See Also
 





Gets or sets the position of the TitleLabel.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public Position TitleLabelPosition { get; set; }

Visual Basic  Copy Code

Public Property TitleLabelPosition As Position

 Property Value

One of the Position Enumeration values.

 Remarks

Not all Position values are valid for the labels at a given axis. Labels at the X-axis can be placed either at the top or bottom of the axis. Labels at Y and Y2-axis can be placed either to the left or right of the axis. Invalid values are ignored.

TitleLabelPosition together with TitleLabelAlignment and TitleLabelOrientation specify the exact location of the TitleLabel. These settings are also considered for the DivisionLabel.

The default value for the TitleLabelPosition property depends on the axis. It is Position.Bottom in the XAxisSettings object, Position.Left in the YAxisSettings object and Position.Right in the Y2AxisSettings object.

 See Also