Interface IColorMappingFunction

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

Implemented by

Methods