Tableau Embedding API
    Preparing search index...

    Interface CustomView

    A named snapshot of the workbook at a specific moment.

    interface CustomView {
        default: boolean;
        name: string;
        ownerName: string;
        shared: boolean;
        url: string;
        workbook: Workbook;
        saveAsync(): Promise<CustomView>;
    }
    Index

    Methods

    • Updates an existing custom view

      Returns Promise<CustomView>

    Properties

    default: boolean

    Gets or sets whether this is the default custom view.

    name: string

    Gets or sets the user-friendly name for the custom view

    ownerName: string

    Gets the user that created the custom view.

    shared: boolean

    Gets or sets whether the custom view is public or private.

    url: string

    Unique URL to load this view again.

    workbook: Workbook

    Gets the Workbook to which this CustomView belongs.