MAIDR JavaScript API
    Preparing search index...

    A mounted binding, returned by bindPowerBI.

    interface PowerBIBinding {
        update: (
            dataView: PowerBIDataView | undefined,
            options?: Partial<PowerBIAdapterOptions>,
        ) => PowerBIConversion | null;
        navigateTo: (ref: PowerBIDataPointRef | null) => boolean;
        conversion: PowerBIConversion | null;
        dispose: () => void;
    }
    Index

    Properties

    update: (
        dataView: PowerBIDataView | undefined,
        options?: Partial<PowerBIAdapterOptions>,
    ) => PowerBIConversion | null

    Convert a data view and show it. Call from the visual's update().

    Type Declaration

    navigateTo: (ref: PowerBIDataPointRef | null) => boolean

    Move MAIDR's cursor to a data point — what a click on the visual's own mark should call, so a sighted colleague pointing at a bar and a screen-reader user land on the same one.

    Type Declaration

    conversion: PowerBIConversion | null

    The conversion currently mounted.

    dispose: () => void

    Unmount MAIDR, remove the wrapper, and hand the chart back.