Rezi
    Preparing search index...

    Type Alias BarChartProps

    BarChartProps: Readonly<
        {
            blitter?: Exclude<GraphicsBlitter, "auto" | "ascii">;
            data: readonly BarChartItem[];
            height?: SizeConstraint;
            highRes?: boolean;
            key?: string;
            maxBarLength?: number;
            orientation?: "horizontal" | "vertical";
            showLabels?: boolean;
            showValues?: boolean;
            style?: TextStyle;
            width?: SizeConstraint;
        },
    > & DisplayableProps

    Props for bar chart widget. Horizontal or vertical bar chart.