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

    Represents a Highcharts chart instance. Passed to highchartsToMaidr to generate MAIDR-compatible data.

    interface HighchartsChart {
        series: HighchartsSeries[];
        xAxis: HighchartsAxis[];
        yAxis: HighchartsAxis[];
        title: { textStr?: string };
        subtitle?: { textStr?: string };
        caption?: { textStr?: string };
        container: HTMLElement;
        renderTo: HTMLElement;
        options: {
            chart?: { type?: string; inverted?: boolean };
            plotOptions?: {
                series?: { stacking?: string };
                column?: { stacking?: string };
                bar?: { stacking?: string };
            };
        };
        tooltip?: {
            refresh: (point: HighchartsPoint | HighchartsPoint[]) => void;
            hide: () => void;
        };
    }
    Index

    Properties

    title: { textStr?: string }
    subtitle?: { textStr?: string }
    caption?: { textStr?: string }
    container: HTMLElement

    The .highcharts-container element created by Highcharts.

    renderTo: HTMLElement

    The user-provided render target element.

    options: {
        chart?: { type?: string; inverted?: boolean };
        plotOptions?: {
            series?: { stacking?: string };
            column?: { stacking?: string };
            bar?: { stacking?: string };
        };
    }
    tooltip?: {
        refresh: (point: HighchartsPoint | HighchartsPoint[]) => void;
        hide: () => void;
    }