corelibraries-devexpress-dot-xtracharts-dot-breadcrumbs-9aa72afa.md
Gets or sets the text that the Breadcrumb Home Item displays instead of an icon.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public string HomeText { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)>
Public Property HomeText As String
| Type | Description |
|---|---|
| String |
The text that the Breadcrumb Home Item displays instead of an icon.
|
The Breadcrumb Home Item displays the default icon if this property is set to null ( Nothing in Visual Basic) or to empty string.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HomeText 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#L23
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#L24
breadcrumbs.DXFont = New DXFont("Tahoma", 12.0F, DXFontStyle.Bold)
breadcrumbs.HomeText = "Home"
End Sub
See Also