OPEN_GRID API - v1.3.1
    Preparing search index...

    Type Alias ChartSource

    ChartSource:
        | { kind: "range"; range?: CellRange }
        | { kind: "selection" }
        | { kind: "checked" }
        | { kind: "all" }
        | {
            category?: string;
            kind: "columns";
            series: (string | ChartSeriesSpec)[];
        }

    차트 파이프라인의 첫 단계 — "그리드의 어느 데이터를 그릴 것인가"를 고른다. / The first stage of the chart pipeline — picks which grid data to draw.

    'range'(지정 범위)·'selection'(현재 드래그 선택)·'checked'(체크된 행)·'all'(전체 데이터) 는 "사용자가 화면에서 고른 것을 그대로 차트로" 만들 때 쓰고, 'columns' 는 화면 선택과 무관하게 카테고리/시리즈 컬럼을 코드로 직접 지정하고 싶을 때 쓴다. / 'range' (a given cell range), 'selection' (the current drag selection), 'checked' (checked rows), and 'all' (the whole dataset) turn whatever the user picked on screen straight into a chart. 'columns' is for when you want to specify the category/series columns in code, independent of any on-screen selection.