Scales / Title
In This Topic
Title
In This Topic

Each scale has a Title property allowing you to control the title of the axis. The following code will change the title displayed on an axis:

C#
Copy Code
axis.Scale.Title.Text = "Axis Title";
 Title Offset

The title offset allows you to indent the title from the scale labels and ticks by a given amount. The following code will indent the label 10 dips away from the nearest scale decoration (label or tick):

C#
Copy Code
axis.Scale.Title.Offset = 10;