interface RangeSelector {
    activecolor: string;
    bgcolor: string;
    bordercolor: string;
    borderwidth: number;
    buttons: Partial<RangeSelectorButton>[];
    font: Partial<Font>;
    visible: boolean;
    x: number;
    xanchor:
        | "auto"
        | "left"
        | "center"
        | "right";
    y: number;
    yanchor:
        | "auto"
        | "top"
        | "middle"
        | "bottom";
}

Hierarchy (view full)

Properties

activecolor: string
bgcolor: string

Sets the background color of all hover labels on graph.

bordercolor: string

Sets the border color of all hover labels on graph.

borderwidth: number
font: Partial<Font>

Sets the default hover label font used by all traces on the graph.

visible: boolean
x: number
xanchor:
    | "auto"
    | "left"
    | "center"
    | "right"
y: number
yanchor:
    | "auto"
    | "top"
    | "middle"
    | "bottom"