interface ScatterLine {
    color: Color;
    dash: Dash;
    shape:
        | "linear"
        | "spline"
        | "hv"
        | "vh"
        | "hvh"
        | "vhv";
    simplify: boolean;
    smoothing: number;
    width: number;
}

Properties

color: Color
dash: Dash
shape:
    | "linear"
    | "spline"
    | "hv"
    | "vh"
    | "hvh"
    | "vhv"
simplify: boolean
smoothing: number
width: number