@squidcloud/client
    Preparing search index...

    Interface SpreadsheetChartInfo

    One chart's cached content. Cached values are what the chart last rendered; formulas are not evaluated.

    interface SpreadsheetChartInfo {
        series: SpreadsheetChartSeries[];
        sheetName?: string;
        title?: string;
        totalSeriesCount?: number;
    }
    Index

    The chart's data series, in declaration order.

    sheetName?: string

    The worksheet the chart is anchored to, when the relationship graph resolves it.

    title?: string

    The chart's title, when it declares one.

    totalSeriesCount?: number

    The chart's true series count, present ONLY when extraction retained fewer series than the chart actually declares — so an omitted-series count is computed against what the chart HAS, not against what survived extraction's own cap.