eurostat-map
    Preparing search index...

    Interface CoxcombSizeLegendConfig

    Configuration for size legend in coxcomb (polar area) charts.

    interface CoxcombSizeLegendConfig {
        title?: string;
        titlePadding?: number;
        values?: number[];
        labels?: string[];
        labelFormatter?: (value: number) => string;
    }
    Index

    Properties

    title?: string

    Title for the size legend.

    titlePadding?: number

    Padding between title and legend content in pixels.

    15
    
    values?: number[]

    Custom values to display in the size legend. If not specified, values are auto-generated.

    labels?: string[]

    Custom labels for the size legend values.

    labelFormatter?: (value: number) => string

    Custom formatter function for legend labels.