eurostat-map
    Preparing search index...

    Interface PieMapConfig

    Configuration for pie chart composition maps.

    interface PieMapConfig {
        svgId?: string;
        containerId?: string;
        proj?: string;
        projectionFunction?: () => any;
        scale?: "60M" | "20M" | "10M" | "03M" | "01M";
        nutsLevel?: number;
        nutsYear?: string | number;
        geoCenter?: [number, number];
        pixSize?: number;
        geo?: string;
        width?: number;
        height?: number;
        title?: string;
        subtitle?: string;
        bottomText?: string;
        botTxtFontSize?: number;
        botTxtPadding?: number;
        botTxtTooltipMessage?: string;
        footnote?: string;
        source?: string;
        stat?: StatConfig;
        tooltip?: TooltipConfig;
        insets?: InsetConfig[];
        zoomExtent?: [number, number];
        showBtns?: boolean;
        coastal?: boolean;
        coastalMarginWidth?: number;
        coastalMarginColor?: string;
        drawGraticule?: boolean;
        graticuleStyle?: any;
        borderWidth?: number;
        borderColor?: string;
        labelling?: boolean;
        labelSizeThreshold?: number;
        labelOpacity?: number;
        logoURL?: string;
        onBuild?: (map: MapInstance) => void;
        pieMinRadius?: number;
        pieMaxRadius?: number;
        pieChartInnerRadius?: number;
        pieStrokeFill?: string;
        pieStrokeWidth?: number;
        tooltipPieRadius?: number;
        tooltipPieInnerRadius?: number;
        catColors?: Record<string, string>;
        catLabels?: Record<string, string>;
        pieOtherColor?: string;
        pieOtherText?: string;
        showOnlyWhenComplete?: boolean;
        noDataFillStyle?: string;
        dorling?: boolean;
        animateDorling?: boolean;
        pieTotalCode?: string;
        statCodes?: string[];
        legend?: false | PieChartLegendConfig;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    svgId?: string
    containerId?: string
    proj?: string
    projectionFunction?: () => any
    scale?: "60M" | "20M" | "10M" | "03M" | "01M"
    nutsLevel?: number
    nutsYear?: string | number
    geoCenter?: [number, number]
    pixSize?: number
    geo?: string
    width?: number
    height?: number
    title?: string
    subtitle?: string
    bottomText?: string
    botTxtFontSize?: number
    botTxtPadding?: number
    botTxtTooltipMessage?: string
    footnote?: string
    source?: string
    stat?: StatConfig
    tooltip?: TooltipConfig
    insets?: InsetConfig[]
    zoomExtent?: [number, number]
    showBtns?: boolean
    coastal?: boolean
    coastalMarginWidth?: number
    coastalMarginColor?: string
    drawGraticule?: boolean
    graticuleStyle?: any
    borderWidth?: number
    borderColor?: string
    labelling?: boolean
    labelSizeThreshold?: number
    labelOpacity?: number
    logoURL?: string
    onBuild?: (map: MapInstance) => void
    pieMinRadius?: number
    pieMaxRadius?: number
    pieChartInnerRadius?: number
    pieStrokeFill?: string
    pieStrokeWidth?: number
    tooltipPieRadius?: number
    tooltipPieInnerRadius?: number
    catColors?: Record<string, string>
    catLabels?: Record<string, string>
    pieOtherColor?: string
    pieOtherText?: string
    showOnlyWhenComplete?: boolean
    noDataFillStyle?: string
    dorling?: boolean
    animateDorling?: boolean
    pieTotalCode?: string
    statCodes?: string[]
    legend?: false | PieChartLegendConfig