Interface IColorMappingFunction

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

Implemented by

Methods