MindFusion.Charting Programmer's Guide

Chart.TextRenderingHint Property

See Also
 





Specifies the quality, with which text is rendered.

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

 Syntax

C#  Copy Code

public TextRenderingHint TextRenderingHint { get; }

Visual Basic  Copy Code

Public ReadOnly Property TextRenderingHint As TextRenderingHint

 Property Value

One of the .NET TextRenderingHint Enumeration values.

 Remarks

The property specifies the quality, with which chart texts are rendered. It is applied to all texts that are displayed at the chart - legend labels, title and subtitle, axis labels and so on.

The values of the TextRenderingHint enumeration range from System.Default, which means poor quality but fast performance to AntiAlias, which gives high quality but slow performance. Good choice for text displayed on screen is one of the ClearType values.

Please, check the System.Drawing.TextRenderingHint enumeration for more details about the different text rendering options.

Default value for the TextRenderingHint property is TextRenderingHint.System.Default.

 See Also