MAIDR JavaScript API
    Preparing search index...

    Interface EChartsLibrary

    The part of the echarts module bindAllECharts needs.

    echarts.getInstanceByDom looks the instance up in a registry private to the module that created it, so it has to be the host's copy of ECharts: a second copy loaded beside it finds nothing.

    interface EChartsLibrary {
        getInstanceByDom: (dom: HTMLElement) => EChartsHandle | undefined;
    }
    Index

    Properties

    Properties

    getInstanceByDom: (dom: HTMLElement) => EChartsHandle | undefined

    The instance drawn into an element, if there is one.