corelibraries-devexpress-dot-xtracharts-dot-breadcrumbs.md
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
[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public DXFont DXFont { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)>
Public Property DXFont As DXFont
| Type | Description |
|---|---|
| DXFont |
The font that Breadcrumb Items and Breadcrumb Home Item use to display their text.
|
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
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
breadcrumbs.Border.Visibility = DefaultBoolean.True
breadcrumbs.DXFont = New DXFont("Tahoma", 12.0F, DXFontStyle.Bold)
breadcrumbs.HomeText = "Home"
See Also