defines if the sub-elements should be rendered for the first-level branches
webix.ui({
view:"treemap",
subRender: false,
url: "data/data.json"
});
By default a closed branch shows its children. With subRender: false children will be shown only after a parent branch is opened.
Back to top