OPEN_GRID API - v1.5.2
    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).

    軸の設定(ラベル・min/max・スタック)。

    轴的配置(标签、min/max、堆叠)。

    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.

    チャートのタイプ。

    图表的类型。