d3-thematika - v0.0.1
    Preparing search index...

    Interface ContourOptions

    等高線生成オプション

    interface ContourOptions {
        bounds: [[number, number], [number, number]];
        interval: number;
        maxValue?: number;
        minValue?: number;
        smooth?: boolean;
    }
    Index

    Properties

    bounds: [[number, number], [number, number]]

    データの境界 [[xmin, ymin], [xmax, ymax]]

    interval: number

    等高線の間隔(データ単位)

    maxValue?: number

    最大値(指定しない場合は自動計算)

    minValue?: number

    最小値(指定しない場合は自動計算)

    smooth?: boolean

    スムージングを適用するか