MindFusion.Charting Programmer's Guide

Chart.SubTitleText Property

See Also
 





Specifies the text for the chart subtitle.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public string SubTitleText { get; }

Visual Basic  Copy Code

Public ReadOnly Property SubTitleText As String

 Property Value

A string that represents the text for the chart's subtitle.

 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