MAIDR JavaScript API
    Preparing search index...

    Interface TableauHostListeners

    The two things a host tells the session about as they happen.

    interface TableauHostListeners {
        change: () => void;
        markSelection: (event: unknown) => void;
    }
    Index

    Properties

    change: () => void

    Anything that may mean what MAIDR read is no longer what is on screen.

    markSelection: (event: unknown) => void

    The selected marks changed, whoever changed them.

    Type Declaration

      • (event: unknown): void
      • Parameters

        • event: unknown

          The MarksSelectedEvent, unvalidated: the session checks its shape before reading it.

        Returns void