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

    Minimal interface for an amCharts 5 XY chart.

    interface AmXYChart {
        get: (key: string) => unknown;
        className?: string;
        uid?: number;
        series: AmListLike<AmXYSeries>;
        xAxes: AmListLike<AmAxis>;
        yAxes: AmListLike<AmAxis>;
        plotContainer?: {
            toGlobal?: (point: AmPoint) => AmPoint;
            width?: () => number;
            height?: () => number;
            globalBounds?: () => AmBounds;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    get: (key: string) => unknown
    className?: string
    uid?: number
    plotContainer?: {
        toGlobal?: (point: AmPoint) => AmPoint;
        width?: () => number;
        height?: () => number;
        globalBounds?: () => AmBounds;
    }

    The masked plot area container; its bounds clip the visible columns.