a template that specifies the area of an item rectangle
webix.ui({
view:"treemap",
value: "#value#",
data:[...]
});
The value property can be defined as a template string or as a function. A function should return the value of a data field (the value shoud be a number).
value: obj => obj.comments
Back to top