Type Alias SheetTemplate

type SheetTemplate = {
    appId?: string;
    heightPx?: number;
    isPrivate?: boolean;
    jsOpts?: unknown;
    jsOptsById?: Record<string, unknown>;
    patchesById?: Record<string, unknown[]>;
    sheetId?: string;
    sheetName?: string;
    widthPx?: number;
}
Index

Properties

appId?: string

ID of app

heightPx?: number

heightPx of chart

isPrivate?: boolean

optional value to indicate that this sheet is private (used in multi-sheet sharing)

jsOpts?: unknown

Sheet state from client as a string json value. Can include language, theme, viewState etc.

jsOptsById?: Record<string, unknown>
patchesById?: Record<string, unknown[]>
sheetId?: string

ID of sheet

sheetName?: string

an optional name for the sheet (used in multi-sheet sharing)

widthPx?: number

widthPx of chart