Dundas Chart for ASP.NET
Font Property
See Also  Example Send comments on this topic.
Dundas.Charting.WebControl Namespace > Chart Class : Font Property


Gets or sets a Font object, used to set font properties of the applicable chart element.


Font property is not used.

Syntax

Visual Basic (Declaration)  
Public Overrides ReadOnly Property Font As FontInfo
Visual Basic (Usage) Copy Code
Dim instance As Chart
Dim value As FontInfo
 
value = instance.Font
C#  
public override FontInfo Font {get;}

Return Value

A Font object, used to set font properties.

Example

The following sample assigns a new font object to Series1.

Visual Basic Copy Code
'create new font object, specifying font face, size and style
Dim myFont As New Font("Arial", 16, FontStyle.Italic)
'assign font object
Chart1.Series("Series1").Font = myFont

Remarks

Use this to set font properties of the applicable Chart objects.

To set the font of the root chart object's title use the TitleFont property instead.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

Copyright © 2001 - 2009 Dundas Data Visualization, Inc. and others.