interface ColorBar {
    bgcolor: Color;
    bordercolor: Color;
    borderwidth: Color;
    dtick: DTickValue;
    exponentformat:
        | "none"
        | "e"
        | "E"
        | "power"
        | "SI"
        | "B";
    len: number;
    lenmode: "fraction" | "pixels";
    minexponent: number;
    nticks: number;
    outlinecolor: Color;
    outlinewidth: number;
    separatethousands: boolean;
    showexponent:
        | "all"
        | "none"
        | "first"
        | "last";
    showticklabels: boolean;
    showtickprefix:
        | "all"
        | "none"
        | "first"
        | "last";
    showticksuffix:
        | "all"
        | "none"
        | "first"
        | "last";
    thickness: number;
    thicknessmode: "fraction" | "pixels";
    tick0: string | number;
    tickangle: number | "auto";
    tickcolor: Color;
    tickfont: Font;
    tickformat: string;
    tickformatstops: Partial<TickFormatStop>[];
    ticklen: number;
    tickmode: "auto" | "linear" | "array";
    tickprefix: string;
    ticks: "" | "inside" | "outside";
    ticksuffix: string;
    ticktext:
        | Datum[]
        | Datum[][]
        | TypedArray
        | Datum[][][];
    ticktextsrc: any;
    tickvals:
        | Datum[]
        | Datum[][]
        | TypedArray
        | Datum[][][];
    tickvalssrc: any;
    tickwidth: number;
    title: string;
    titlefont: Font;
    titleside: "right" | "top" | "bottom";
    x: number;
    xanchor: "left" | "center" | "right";
    xpad: number;
    y: number;
    yanchor: "top" | "middle" | "bottom";
    ypad: number;
}

Properties

bgcolor: Color
bordercolor: Color
borderwidth: Color
dtick: DTickValue
exponentformat:
    | "none"
    | "e"
    | "E"
    | "power"
    | "SI"
    | "B"
len: number
lenmode: "fraction" | "pixels"
minexponent: number
nticks: number
outlinecolor: Color
outlinewidth: number
separatethousands: boolean
showexponent:
    | "all"
    | "none"
    | "first"
    | "last"
showticklabels: boolean
showtickprefix:
    | "all"
    | "none"
    | "first"
    | "last"
showticksuffix:
    | "all"
    | "none"
    | "first"
    | "last"
thickness: number
thicknessmode: "fraction" | "pixels"
tick0: string | number
tickangle: number | "auto"
tickcolor: Color
tickfont: Font
tickformat: string
tickformatstops: Partial<TickFormatStop>[]
ticklen: number
tickmode: "auto" | "linear" | "array"
tickprefix: string
ticks: "" | "inside" | "outside"
ticksuffix: string
ticktext:
    | Datum[]
    | Datum[][]
    | TypedArray
    | Datum[][][]
ticktextsrc: any
tickvals:
    | Datum[]
    | Datum[][]
    | TypedArray
    | Datum[][][]
tickvalssrc: any
tickwidth: number
title: string
titlefont: Font
titleside: "right" | "top" | "bottom"
x: number
xanchor: "left" | "center" | "right"
xpad: number
y: number
yanchor: "top" | "middle" | "bottom"
ypad: number