MindFusion.Charting Programmer's Guide

Chart.SubTitleText Property

See Also
 





Specifies the text for the chart subtitle.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public string SubTitleText { get; set; }

Visual Basic  Copy Code

Public Property SubTitleText As String

 Property Value

A string value.

 Remarks

The property specifies the text that is drawn as chart subtitle. If the SubTitleText is an empty string no subtitle is drawn. The subtitle is always drawn under the title (if any).

The subtitle is drawn with font and brush set respectively by the SubTitleFont and SubTitleBrush properties and is aligned in the center.

You can make the subtitle multi-lined if you insert the new line symbol ("\n") in the positions in the subtitle string, where you want new lines.

Default value of the SubTitleText property is an empty string.

 See Also