Interface PointOptions

interface PointOptions {
    anchor?: "start" | "middle" | "end";
    baseline?:
        | "middle"
        | "auto"
        | "text-bottom"
        | "alphabetic"
        | "ideographic"
        | "central"
        | "mathematical"
        | "hanging"
        | "text-top";
    dx?: string | number;
    dy?: string | number;
    fontFamily?: string;
    fontSize?: number;
    hideIcon?: boolean;
    iconColor?: Color;
    iconKind?: "ellipse" | "rectangle";
    iconOpacity?: number;
    id?: string;
    strokeWidth?: number;
    text?: string;
    textColor?: Color;
    textOpacity?: number;
    visibility?: "hidden" | "visible" | "collapse";
}

Hierarchy

  • Pick<TextOptions,
        | "anchor"
        | "baseline"
        | "dx"
        | "dy"
        | "fontFamily"
        | "fontSize">
    • PointOptions

Properties

anchor?: "start" | "middle" | "end"
baseline?:
    | "middle"
    | "auto"
    | "text-bottom"
    | "alphabetic"
    | "ideographic"
    | "central"
    | "mathematical"
    | "hanging"
    | "text-top"
dx?: string | number
dy?: string | number
fontFamily?: string
fontSize?: number
hideIcon?: boolean
iconColor?: Color
iconKind?: "ellipse" | "rectangle"
iconOpacity?: number
id?: string
strokeWidth?: number
text?: string
textColor?: Color
textOpacity?: number
visibility?: "hidden" | "visible" | "collapse"