MAIDR JavaScript API
    Preparing search index...

    Interface ApexChartsAdapterOptions

    Options for customizing the apexchartsToMaidr output.

    Each overrides what the chart's own configuration says.

    interface ApexChartsAdapterOptions {
        id?: string;
        title?: string;
        subtitle?: string;
        caption?: string;
        axes?: { x?: string; y?: string; z?: string };
    }
    Index

    Properties

    id?: string

    The MAIDR figure id. Defaults to maidr-apexcharts-<chartID>.

    title?: string

    The chart title. Defaults to title.text.

    subtitle?: string

    The chart subtitle. Defaults to subtitle.text.

    caption?: string

    A caption read after the title. The chart has no default.

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

    Axis labels. Default to xaxis.title.text and the title.text of the y axis each layer's series are drawn against (yaxis[0] by default). ApexCharts draws each title where its axis is drawn, so on a horizontal bar chart x is the value axis along the bottom.