eurostat-map
    Preparing search index...

    Interface FlowMapLegendConfig

    Configuration for flow map legends. Flow maps can display multiple legend types: flow width, node size, flow color, and region color.

    interface FlowMapLegendConfig {
        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;
        flowWidthLegend?: Partial<FlowWidthLegendConfig>;
        nodeSizeLegend?: Partial<NodeSizeLegendConfig>;
        flowColorLegend?: Partial<FlowColorLegendConfig>;
        regionColorLegend?: Partial<RegionColorLegendConfig>;
        [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
    flowWidthLegend?: Partial<FlowWidthLegendConfig>

    Configuration for the flow width legend.

    nodeSizeLegend?: Partial<NodeSizeLegendConfig>

    Configuration for the node size legend.

    flowColorLegend?: Partial<FlowColorLegendConfig>

    Configuration for the flow color legend.

    regionColorLegend?: Partial<RegionColorLegendConfig>

    Configuration for the region color legend.