Interface IPartialCategoryNode

interface IPartialCategoryNode {
    children: IPartialCategoryNode[];
    color?: string;
    label?: string;
    name?: string;
    value?: number;
}

Hierarchy

Properties

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