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

    Interface DashboardDataset

    A single dataset within a chart

    interface DashboardDataset {
        label: string;
        data: number[] | DashboardPoint[];
        backgroundColor?: string | string[];
        borderColor?: string | string[];
        borderWidth?: number;
    }
    Index

    Properties

    label: string
    data: number[] | DashboardPoint[]

    Numeric values for bar/line/pie/etc., or {x,y} points for scatter

    backgroundColor?: string | string[]
    borderColor?: string | string[]
    borderWidth?: number