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

    Extends DashboardChartConfig with AI-provenance metadata.

    interface AIChartConfig {
        analysisNote: string;
        dataSource: string;
        confidence: number;
        id: string;
        type: DashboardChartType;
        title: string;
        labels?: string[];
        datasets: DashboardDataset[];
        annotations?: DashboardAnnotation[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    analysisNote: string

    Human-readable explanation of what this chart shows and how it was derived.

    dataSource: string

    Description of the documents / data that informed this chart.

    confidence: number

    0–1 confidence score for this analysis (1 = high confidence).

    id: string

    Unique id used as the canvas element id

    Chart.js chart type

    title: string

    Chart title rendered above the canvas

    labels?: string[]

    Category labels (x-axis for bar/line), optional for scatter charts

    datasets: DashboardDataset[]

    One or more data series

    annotations?: DashboardAnnotation[]

    Optional annotation overlays (chartjs-plugin-annotation)