WebChartControl.Breadcrumbs Property
Returns the settings that configure how the Breadcrumbs element looks.
Namespace: DevExpress.XtraCharts.Web
Assembly: DevExpress.XtraCharts.v24.1.Web.dll
NuGet Package: DevExpress.Web.Visualization
Declaration
Property Value
Type | Description |
---|---|
Breadcrumbs | The Breadcrumbs element appearance settings storage. |
Remarks
The Breadcrumbs element allows users to return to previous data detail levels.
Note
Breadcrumbs are displayed when at least one ~DrillTemplate property is specified.
The following example shows how to manage the Breadcrumbs appearance settings:
var breadcrumbs = WebChartControl1.Breadcrumbs;
breadcrumbs.Border.Color = Color.LightGray;
breadcrumbs.Border.Visibility = DefaultBoolean.True;
breadcrumbs.DXFont = new DXFont("Tahoma", 12.0F, DXFontStyle.Bold);
breadcrumbs.HomeText = "Home";
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Breadcrumbs 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.