Tableau Embedding API
    Preparing search index...

    Interface FilterChangedEvent

    An event which is related to a particular Worksheet in the workbook.

    interface FilterChangedEvent {
        fieldName: string;
        sheet: Sheet;
        worksheet: Worksheet;
        getFilterAsync(): Promise<Filter>;
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Returns Promise<Filter>

      The Filter object associated with the event.

    Properties

    fieldName: string

    The name of the field being filtered.

    sheet: Sheet

    The sheet which was the source of this event.

    worksheet: Worksheet

    The worksheet which was the source of this event.