MindFusion.Charting Programmer's Guide

Chart.SubTitleFont Property

See Also
 





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

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public Font SubTitleFont { get; set; }

Visual Basic  Copy Code

Public Property SubTitleFont As Font

 Property Value

A value of the .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