MAIDR Documentation - v3.73.0
    Preparing search index...

    One panel of a multi-panel (small-multiples) figure built from several independently rendered Frappe charts.

    Frappe Charts has no native facet/subplot concept — a "multi-panel" chart is simply N new frappe.Chart(...) instances laid out by the host page's CSS. A FrappePanel pairs one such instance with its container and the adapter options that would otherwise be passed to createMaidrFromFrappeChart.

    interface FrappePanel {
        chart: FrappeChart;
        container: HTMLElement;
        chartType: FrappeChartType;
        title?: string;
        axes?: { x?: string; y?: string };
    }
    Index

    Properties

    The rendered Frappe chart instance for this panel (only data is read).

    container: HTMLElement

    The element the chart was drawn into. Must be inside the wrapper element.

    chartType: FrappeChartType

    The Frappe chart type of this panel.

    title?: string

    Panel display name, announced when navigating between subplots.

    axes?: { x?: string; y?: string }

    Axis labels for this panel.