MAIDR Documentation - v3.65.0
    Preparing search index...

    Interface HistogramBinConfig

    Configuration for histogram bin ranges. Required when chartType is 'histogram'.

    interface HistogramBinConfig {
        xMinKey: string;
        xMaxKey: string;
        yMinKey?: string;
        yMaxKey?: string;
    }
    Index

    Properties

    xMinKey: string

    Key in data objects for the lower bin edge.

    xMaxKey: string

    Key in data objects for the upper bin edge.

    yMinKey?: string

    Key in data objects for the minimum count (typically 0). Defaults to 0.

    yMaxKey?: string

    Key in data objects for the maximum count. Defaults to the yKey value.