TreeView component for Dash framework. Component is based on Ant Design Tree widget.
pip install dash_treeview_antd
See usage.py for exampe of use.
- 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"]