MindFusion.Charting Programmer's Guide

Chart.SubTitleFont Property

See Also
 





Specifies the font, which is used to draw the chart subtitle. 

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

 Syntax

C#  Copy Code

public Font SubTitleFont { get; }

Visual Basic  Copy Code

Public ReadOnly Property SubTitleFont As Font

 Property Value

An object of type .NET Font class.

 Remarks

The property defines the font with which the chart's subtitle is drawn. The subtitle text is specified with the SubTitleText property. Leave it an empty string, if you do not want any subtitle to be drawn. The subtitle is drawn with the SubTitleBrush property. The subtitle is always drawn under the title (if any).

You can make the subtitle text in several lines by using the new line ("\n") symbol.

Default value for the SubTitleFont property is Times New Roman, size 14.

 See Also