dash_treeview_antd
v0.0.2
Published
Tree view component based on Ant Design widget.
Downloads
19
Readme
Dash TreeView component.
TreeView component for Dash framework. Component is based on Ant Design Tree widget.
Installation
pip install dash_treeview_antd
Usage
See usage.py for exampe of use.
Values
- data - tree nodes data.
{ "title": "Parent", # node title "key": "0", # node id (required to be unique) "children": [{ "title": "Child", "key": "0-0", "children": [ {"title": "Subchild1", "key": "0-0-1"}, {"title": "Subchild2", "key": "0-0-2"}, {"title": "Subchild3", "key": "0-0-3"}, ], }]}
- selected, checked, expanded - keys of selected/checked/expanded nodes.
["0", "0-1"]