Interface ICategoryNode

interface ICategoryNode {
    children: Readonly<ICategoryNode>[];
    color: string;
    label: string;
    name: string;
    value: number;
}

Hierarchy (view full)

Properties

children: Readonly<ICategoryNode>[]
color: string

category color

Default

next in d3 color 10 range
label: string

optional label of this category (the one to render)

name: string
value: number