Interface UplotSeriesOptionsExperimental

One µPlot series definition (the subset this adapter emits).

interface UplotSeriesOptions {
    fill?: string;
    label?: string;
    points?: {
        show?: boolean;
    };
    stroke?: string;
    value?: unknown;
    width?: number;
}

Properties

fill?: string
label?: string
points?: {
    show?: boolean;
}
stroke?: string
value?: unknown
width?: number