Type Alias ChartTemplate

If the template type is not "chart", this can be null. Otherwise, the following properties are required: appId, sheetId, objectId, widthPx, heightPx, language. The following properties are optional: outZoom, outDpi

type ChartTemplate = {
    appId?: string;
    heightPx?: number;
    jsOpts?: unknown;
    objectDef?: unknown;
    objectId?: string;
    outDpi?: number;
    outZoom?: number;
    patches?: unknown[];
    persistentBookmarkIncludeVariables?: boolean;
    sheetId?: string;
    widthPx?: number;
}
Index

Properties

appId?: string

ID of app

heightPx?: number
jsOpts?: unknown
objectDef?: unknown
objectId?: string
outDpi?: number
outZoom?: number
patches?: unknown[]
persistentBookmarkIncludeVariables?: boolean
sheetId?: string
widthPx?: number