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

    Interface ChartSeries

    차트 시리즈(정규화된 값 배열). / Chart series (normalized value array).

    interface ChartSeries {
        color?: string;
        data: (number | null)[];
        name: string;
        pattern?: "solid" | "hatch" | "dot" | "cross";
    }
    Index

    Properties

    color?: string

    시리즈 색. / Series color.

    data: (number | null)[]

    categories 와 동일 순서로 정렬. 결측=null. / Aligned to categories order; missing = null.

    name: string

    범례 라벨(기본값 = 원본 컬럼 header/field). / Legend label (default = source column header/field).

    pattern?: "solid" | "hatch" | "dot" | "cross"

    색만으로 시리즈를 구분하기 어려운 사용자(색약 등)를 위해, 색과 함께(또는 색 대신) 채움 무늬로도 시리즈를 구분한다. 'solid'=무늬 없음(기본), 'hatch'=사선, 'dot'=점, 'cross'=십자. / A fill pattern that distinguishes series by shape, not just color — for viewers who can't rely on color alone (color-vision deficiency, etc.). 'solid' = no pattern (default), 'hatch' = diagonal lines, 'dot' = dots, 'cross' = crosshatch.