interface CandlestickData {
    close: number[];
    decreasing: {
        line?: {
            color?: string;
            width?: number;
        };
    };
    high: number[];
    hoverinfo: HoverInfo;
    hoverlabel: {
        align?: "auto" | "left" | "right";
        bgcolor?: string | string[];
        bordercolor?: string | string[];
        font?: {
            color?: string | string[];
            family?: string | string[];
            size?: number;
        };
        namelength?: number | number[];
        split?: boolean;
    };
    hovertext: string | string[];
    ids: string[];
    increasing: {
        line?: {
            color?: string;
            width?: number;
        };
    };
    line: {
        width?: number;
    };
    low: number[];
    meta: any;
    name: string;
    opacity: number;
    open: number[];
    showlegend: boolean;
    text: string | string[];
    type: "candlestick";
    visible: boolean | "legendonly";
    whiskerwidth: number;
    x: string[];
    xaxis: string;
    xperiod: any;
    xperiod0: any;
    xperiodalignment: "middle" | "end" | "start";
}

Properties

close: number[]
decreasing: {
    line?: {
        color?: string;
        width?: number;
    };
}
high: number[]
hoverinfo: HoverInfo
"all"
hoverlabel: {
    align?: "auto" | "left" | "right";
    bgcolor?: string | string[];
    bordercolor?: string | string[];
    font?: {
        color?: string | string[];
        family?: string | string[];
        size?: number;
    };
    namelength?: number | number[];
    split?: boolean;
}
hovertext: string | string[]
""
ids: string[]
increasing: {
    line?: {
        color?: string;
        width?: number;
    };
}
line: {
    width?: number;
}
width=2
low: number[]
meta: any
name: string
opacity: number

number between 0 and 1

1
open: number[]
showlegend: boolean
true
text: string | string[]
""
type
visible: boolean | "legendonly"
true
whiskerwidth: number

Number between 0 and 1.

Selects the width of the whiskers relative to the box´s width. For example, with 1, the whiskers are as wide as the box(es).

0
x: string[]
xaxis: string
"x"
xperiod: any
0
xperiod0: any
xperiodalignment: "middle" | "end" | "start"
"middle"