Interface IMapAbleDesc

interface IMapAbleDesc {
    color?: string;
    colorMapping?: string | ITypedDump | (v: number) => string;
    domain?: [number, number];
    map?: ITypedDump;
    range?: [number, number];
}

Hierarchy (View Summary)

Properties

color?: string

use colorMapping instead

colorMapping?: string | ITypedDump | (v: number) => string

color mapping

domain?: [number, number]

either map or domain should be available

dump of mapping function

range?: [number, number]
[0,1]