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

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