The RpgLogs Scripting API
    Preparing search index...

    Type Alias BoxPlot

    BoxPlot: BaseSeries<"boxplot"> & Partial<
        {
            boxDashStyle: DashStyle;
            centerInCategory: boolean;
            colorByPoint: boolean;
            colors: Color[];
            connectEnds: boolean;
            connectNulls: boolean;
            depth: number;
            edgeColor: Color;
            edgeWidth: number;
            fillColor: Color;
            grouping: boolean;
            groupPadding: number;
            medianColor: Color;
            medianDashStyle: DashStyle;
            medianWidth: number
            | null;
            minPointLength: number;
            pointRange: number | null;
            stemDashStyle: DashStyle;
            stemWidth: number;
            whiskerColor: Color;
            whiskerDashStyle: DashStyle;
            whiskerLength: number;
            whiskerWidth: number;
        },
    >