Interface ICategoryInternalNode

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

Hierarchy (view full)

Properties

children: Readonly<ICategoryInternalNode>[]
color: string

category color

Default

next in d3 color 10 range
label: string

optional label of this category (the one to render)

name: string
path: string
value: number