@carbon/charts
    Preparing search index...

    Interface BinnedAxisOptions

    interface BinnedAxisOptions {
        binned?: boolean;
        bins?: number | any[];
        limitDomainToBins?: boolean;
    }
    Index

    Properties

    binned?: boolean

    should be set to true on the domain axis that's being broken into bins

    bins?: number | any[]

    Bins to display (Histogram) bins: 20 bins: [0, 20, 40, 60] bins: [new Date(...), new Date(...), ...]

    limitDomainToBins?: boolean

    limit the visible axis domain to only the binned area