Skip to main content

WebChartControl.Breadcrumbs Property

Returns the settings that configure how the Breadcrumbs element looks.

Namespace: DevExpress.XtraCharts.Web

Assembly: DevExpress.XtraCharts.v23.2.Web.dll

NuGet Package: DevExpress.Web.Visualization

Declaration

public Breadcrumbs Breadcrumbs { get; }

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:

View Example

Breadcrumbs customization

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";

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.

See Also