columns = [
{
label: "Size",
data: diplayingTree=>cachedColumnData?cachedColumnData:(mutable cachedColumnData = subtotalForNodes(diplayingTree, d=>d.value)),
value: d=>d.value,
format: (value, d) => value ? format(value) : "",
x: 550,
},
{
label: "Count",
data: diplayingTree=>identifyDescendants(root.copy()).count().descendants(),
format: (value, d) => value>1 ? format(value) : "",
x: 640,
}
]