stz-chart-maker Documentation - v2.4.2
    Preparing search index...

    Interface ScatterQuadrantOptions

    interface ScatterQuadrantOptions {
        backgroundColors?: Partial<
            Record<"topLeft" | "topRight" | "bottomLeft" | "bottomRight", string>,
        >;
        borderColor?: string;
        borderWidth?: number;
        fontSize?: number;
        fontWeight?: string;
        labelColor?: string;
        labels?: Partial<
            Record<
                "topLeft"
                | "topRight"
                | "bottomLeft"
                | "bottomRight",
                string | false,
            >,
        >;
        x?: number;
        y?: number;
    }
    Index

    Properties

    backgroundColors?: Partial<
        Record<"topLeft" | "topRight" | "bottomLeft" | "bottomRight", string>,
    >

    4분면별 배경색입니다.

    borderColor?: string

    기준선 색상입니다.

    borderWidth?: number

    기준선 두께입니다.

    fontSize?: number

    4분면 라벨 글자 크기입니다.

    fontWeight?: string

    4분면 라벨 글자 굵기입니다.

    labelColor?: string

    4분면 라벨 색상입니다.

    labels?: Partial<
        Record<
            "topLeft"
            | "topRight"
            | "bottomLeft"
            | "bottomRight",
            string | false,
        >,
    >

    4분면 라벨입니다. false 를 주면 해당 라벨을 숨깁니다.

    x?: number

    수직 기준선의 데이터 값입니다. 기본값은 0 입니다.

    y?: number

    수평 기준선의 데이터 값입니다. 기본값은 0 입니다.