Riksdagsmonitor Intelligence Platform - v0.7.19
    Preparing search index...

    Interface HeatMapConfig

    CSS-only heat-map configuration

    interface HeatMapConfig {
        id: string;
        title: string;
        rowLabels: string[];
        columnLabels: string[];
        cells: HeatMapCell[][];
        minLabel?: string;
        maxLabel?: string;
    }
    Index

    Properties

    id: string

    Unique identifier used as the container element id

    title: string

    Chart title

    rowLabels: string[]

    Row labels (left axis)

    columnLabels: string[]

    Column labels (top axis)

    cells: HeatMapCell[][]

    Row-major matrix of cells (rows.length × columns.length)

    minLabel?: string

    Label for the low-intensity end of the scale

    maxLabel?: string

    Label for the high-intensity end of the scale