Interface ContourLineOption

interface ContourLineOption {
    color?: string;
    contourCount?: number;
    customThresholds?: number[];
    epsilonHighRatio?: number;
    epsilonLowRatio?: number;
    show?: boolean;
    smooth?: boolean;
    thresholdMode?: "equalInterval" | "quantile" | "custom" | "paletteStops";
    width?: number;
}

Properties

color?: string
contourCount?: number
customThresholds?: number[]
epsilonHighRatio?: number
epsilonLowRatio?: number
show?: boolean
smooth?: boolean
thresholdMode?: "equalInterval" | "quantile" | "custom" | "paletteStops"
width?: number