MindFusion.Charting Programmer's Guide

Chart.TitleFont Property

See Also
 





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

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

 Syntax

C#  Copy Code

public Font TitleFont { get; }

Visual Basic  Copy Code

Public ReadOnly Property TitleFont As Font

 Property Value

An object of type .NET Font class.

 Remarks

The property defines the font with which the chart's title is drawn. The title text is specified with the TitleText property. If it is an empty string, no title is drawn. The title is drawn with the TitleBrush property and is always above the subtitle.

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

Default value for the TitleFont property is Times New Roman, size 16.

 See Also