interface ViolinData {
    alignmentgroup: string;
    bandwidth: number;
    box: Partial<{
        fillcolor: Color;
        line: Partial<{
            color: Color;
            width: number;
        }>;
        visible: boolean;
        width: number;
    }>;
    fillcolor: Color;
    hoveron: string;
    hovertemplate: string | string[];
    hovertext: string | string[];
    jitter: number;
    line: Partial<{
        color: Color;
        width: number;
    }>;
    marker: Partial<BoxPlotMarker>;
    meanline: Partial<{
        color: Color;
        visible: boolean;
        width: number;
    }>;
    name: string;
    offsetgroup: string;
    opacity: number;
    orientation: "v" | "h";
    pointpos: number;
    points:
        | false
        | "all"
        | "outliers"
        | "suspectedoutliers";
    scalegroup: string;
    scalemode: "width" | "count";
    selected: ScatterSelectedMarker;
    side: "both" | "positive" | "negative";
    span: any[];
    spanmode: "soft" | "hard" | "manual";
    text: string | string[];
    type: "violin";
    unselected: ScatterSelectedMarker;
    width: number;
    x: Datum[] | Datum[][] | TypedArray;
    x0: any;
    y: Datum[] | Datum[][] | TypedArray;
    y0: any;
}

Properties

alignmentgroup: string
bandwidth: number
box: Partial<{
    fillcolor: Color;
    line: Partial<{
        color: Color;
        width: number;
    }>;
    visible: boolean;
    width: number;
}>
fillcolor: Color
hoveron: string
hovertemplate: string | string[]
hovertext: string | string[]
jitter: number
line: Partial<{
    color: Color;
    width: number;
}>
meanline: Partial<{
    color: Color;
    visible: boolean;
    width: number;
}>
name: string
offsetgroup: string
opacity: number
orientation: "v" | "h"
pointpos: number
points:
    | false
    | "all"
    | "outliers"
    | "suspectedoutliers"
scalegroup: string
scalemode: "width" | "count"
side: "both" | "positive" | "negative"
span: any[]
spanmode: "soft" | "hard" | "manual"
text: string | string[]
type
width: number
x: Datum[] | Datum[][] | TypedArray
x0: any
y: Datum[] | Datum[][] | TypedArray
y0: any