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

    Interface ChartPoint

    차트 포인트(히트테스트/클릭 대상). / Chart point (hit-test/click target).

    interface ChartPoint {
        category: string;
        index: number;
        rowId?: string;
        seriesName: string;
        value: number | null;
    }
    Index

    Properties

    category: string

    카테고리 라벨. / Category label.

    index: number

    카테고리 인덱스. / Category index.

    rowId?: string

    원본 행 stable id(있으면). / Source row stable id (if any).

    seriesName: string

    시리즈 이름. / Series name.

    value: number | null

    값(결측 null). / Value (null if missing).