Interface ICategoricalColorMappingFunction

interface ICategoricalColorMappingFunction {
    apply(v: ICategory): string;
    clone(): ICategoricalColorMappingFunction;
    eq(other: ICategoricalColorMappingFunction): boolean;
    toJSON(): ITypedDump;
}

Implemented by

Methods