Skip to main content
A newer version of this page is available. .

DiagramOrgChartController.ChildrenSelector Property

Gets or sets an object that chooses an item’s subordinates based on custom logic. This is a dependency property.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v19.1.dll

Declaration

[Browsable(false)]
public virtual IChildrenSelector ChildrenSelector { get; set; }

Property Value

Type Description
DevExpress.Diagram.Core.IChildrenSelector

An IChildrenSelector implementation that chooses a diagram item’s subordinates based on custom logic.

Remarks

You can bind the DiagramControl to a data source using the DiagramDataBindingControllerBase.DataSource property.

When binding to hierarchical data, create a class that implements the IChildrenSelector interface and assign its instance to the ChildrenSelector property.

See Also