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

    Interface ChartRenderSpec

    렌더 스펙(어댑터에 전달되는 스냅샷). / Render spec (snapshot passed to adapters).

    interface ChartRenderSpec {
        a11y: A11yTableModel;
        axis?: {
            stacked?: boolean;
            xLabel?: string;
            yLabel?: string;
            yMax?: number;
            yMin?: number;
        };
        legend?: boolean
        | { position: "left" | "right" | "top" | "bottom" };
        numberFormat?: (
            v: number,
            ctx: { axis: "legend" | "x" | "y" | "tooltip"; field?: string },
        ) => string;
        palette?: string[];
        theme: ChartTheme;
        title?: string;
        tooltip?: boolean;
        type: ChartType;
    }
    Index

    Properties

    접근성 테이블 모델. / Accessibility table model.

    axis?: {
        stacked?: boolean;
        xLabel?: string;
        yLabel?: string;
        yMax?: number;
        yMin?: number;
    }

    축 설정(라벨·min/max·스택). / Axis config (labels, min/max, stacked).

    legend?: boolean | { position: "left" | "right" | "top" | "bottom" }

    범례 표시/위치. / Legend visibility/position.

    numberFormat?: (
        v: number,
        ctx: { axis: "legend" | "x" | "y" | "tooltip"; field?: string },
    ) => string

    숫자 포맷터(축/툴팁/범례 컨텍스트). / Number formatter (axis/tooltip/legend context).

    palette?: string[]

    시리즈 팔레트(테마 팔레트 오버라이드). / Series palette (overrides theme palette).

    theme: ChartTheme

    렌더 테마. / Render theme.

    title?: string

    차트 제목. / Chart title.

    tooltip?: boolean

    툴팁 사용 여부. / Whether tooltips are enabled.

    type: ChartType

    차트 타입. / Chart type.