HierarchicalChartControlBase.SelectedItems Property
Gets or sets the list of the TreeMap or Sunburst Control’s selected items.
Namespace: DevExpress.XtraTreeMap
Assembly: DevExpress.XtraTreeMap.v24.2.UI.dll
Declaration
[Browsable(false)]
[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
public IList SelectedItems { get; }
Property Value
Type | Description |
---|---|
IList | A list of selected items. |
Remarks
If the TreeMap or Sunburst Control is bound to data using its FlatDataAdapter or HierarchicalDataAdapter, the SelectedItems property returns the data source objects for the selected treemap / sunburst items. The TreeMapItem.Tag / SunburstItem.Tag property stores these data source objects.
If the TreeMap or Sunburst Control uses ItemStorage, the SelectedItems property stores the selected treemap / sunburst items. Note that if the item’s Tag property is specified, the SelectedItems stores the Tag property values.
See Also