BreadCrumbs
The BreadCrumbs component allows displaying the current nesting state of a hierarchical chart, as well as to navigate between the nesting levels.
To connect the component to the chart, set the DrillDownView
property.
For example, put the chart on the form
Then put the BreadCrumbs
component on the form.
In the DrillDownView
property of the BreadCrumbs
component, specify the previously created chart.
To create a component from the program, use the following code:
// Creating a BreadCrumbs object
BreadCrumbs breadCrumbs = new BreadCrumbs();
// Connecting to the chart
breadCrumbs.DrillDownView = treeMap;