MAIDR JavaScript API
    Preparing search index...

    Interface TableauExtensionBinding

    Handle returned by bindTableauExtension.

    interface TableauExtensionBinding {
        binding: TableauBinding | null;
        options: TableauAdapterOptions;
        configure: () => Promise<void>;
        dispose: () => void;
    }
    Index

    Properties

    binding: TableauBinding | null

    The figure currently mounted, or null when the current options leave nothing to mount. Replaced whenever the saved settings change.

    The options the current figure was built from: defaults, then settings.

    configure: () => Promise<void>

    Open the configuration dialog, as the extension's Configure menu does.

    dispose: () => void

    Stop listening and take the figure down; the dashboard is left as it was.