eurostat-map
    Preparing search index...

    Interface LegendConfig

    Parent configuration for map legends. Each map type will extend this with its own specific properties, but these are the common ones that apply to all legend types.

    interface LegendConfig {
        x?: number;
        y?: number;
        width?: number;
        height?: number;
        title?: string;
        titleWidth?: number;
        titleFontSize?: number;
        boxWidth?: number;
        boxHeight?: number;
        boxPadding?: number;
        boxCornerRadius?: number;
        shapeWidth?: number;
        shapeHeight?: number;
        shapePadding?: number;
        labelFontSize?: number;
        labelOffset?: number;
        labelWrap?: number;
        labelDecimalPlaces?: number;
        orientation?: "vertical" | "horizontal";
        ascending?: boolean;
        cells?: any[];
        noData?: boolean;
        noDataText?: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    x?: number
    y?: number
    width?: number
    height?: number
    title?: string
    titleWidth?: number
    titleFontSize?: number
    boxWidth?: number
    boxHeight?: number
    boxPadding?: number
    boxCornerRadius?: number
    shapeWidth?: number
    shapeHeight?: number
    shapePadding?: number
    labelFontSize?: number
    labelOffset?: number
    labelWrap?: number
    labelDecimalPlaces?: number
    orientation?: "vertical" | "horizontal"
    ascending?: boolean
    cells?: any[]
    noData?: boolean
    noDataText?: string