Tableau Embedding API
    Preparing search index...

    Interface SheetSize

    interface SheetSize {
        behavior: SheetSizeBehavior;
        maxSize?: Size;
        minSize?: Size;
    }
    Index

    Properties

    The sizing method for a sheet. The value must be one of the following: Automatic, Exactly, Range, AtLeast, and AtMost. Exactly, Range, AtLeast, and AtMost are used in combination with minSize or maxsize.

    maxSize?: Size

    The maximum size of the sheet. This is only defined when behavior is Exactly, Range or AtMost.

    minSize?: Size

    The minimum size of the sheet. This is only defined when behavior is Exactly, Range, or AtLeast.