Back to Devexpress

Breadcrumbs.DXFont Property

corelibraries-devexpress-dot-xtracharts-dot-breadcrumbs.md

latest2.8 KB
Original Source

Breadcrumbs.DXFont Property

Gets or sets the font that Breadcrumb Items and Breadcrumb Home Item use to display their text.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public DXFont DXFont { get; set; }
vb
<XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)>
Public Property DXFont As DXFont

Property Value

TypeDescription
DXFont

The font that Breadcrumb Items and Breadcrumb Home Item use to display their text.

|

Remarks

Important

Use this property instead of Font to specify the font used to display the text of the Breadcrumb Items and Breadcrumb Home Item.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DXFont property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

asp-net-web-forms-web-chart-control-create-drill-down-chart/CS/DrillDownChart/WebForm1.aspx.cs#L22

csharp
breadcrumbs.Border.Visibility = DefaultBoolean.True;
breadcrumbs.DXFont = new DXFont("Tahoma", 12.0F, DXFontStyle.Bold);
breadcrumbs.HomeText = "Home";

asp-net-web-forms-web-chart-control-create-drill-down-chart/VB/DrillDownChart/WebForm1.aspx.vb#L23

vb
breadcrumbs.Border.Visibility = DefaultBoolean.True
breadcrumbs.DXFont = New DXFont("Tahoma", 12.0F, DXFontStyle.Bold)
breadcrumbs.HomeText = "Home"

See Also

Breadcrumbs Class

Breadcrumbs Members

DevExpress.XtraCharts Namespace