blessed-components - v1.20.0
    Preparing search index...

    Interface RenderScatterPlotOptions

    Options accepted by renderScatterPlot.

    interface RenderScatterPlotOptions {
        height: number;
        points: readonly ScatterPlotPoint[];
        width: number;
        xDomain?: { max: number; min: number };
        yDomain?: { max: number; min: number };
    }
    Index

    Properties

    height: number

    Plot height.

    points: readonly ScatterPlotPoint[]

    Points.

    width: number

    Plot width.

    xDomain?: { max: number; min: number }

    X domain.

    yDomain?: { max: number; min: number }

    Y domain.