@pond-ts/charts API Reference
    Preparing search index...

    Interface BarStyle

    A resolved bar style: the flat fill (scaled by opacity, 0–1) plus the highlight colour the selected bar takes (also its outline), and the bar geometry — gap (px between adjacent bars, the default for <BarChart gap>) and minWidth (the px floor so a too-thin bucket stays visible) handed to barSpanPx, with outlineWidth for the selected-bar stroke.

    interface BarStyle {
        fill: string;
        gap: number;
        highlight: string;
        minWidth: number;
        opacity: number;
        outlineWidth: number;
    }
    Index

    Properties

    fill: string
    gap: number
    highlight: string
    minWidth: number
    opacity: number
    outlineWidth: number