interface TextLabelStyle {
    align?: "center" | "left" | "right";
    backgroundBorderRadius?: number | number[];
    backgroundFill?: string;
    backgroundOpacity?: number;
    fill?: string;
    fontFamily?: string;
    fontSize?: number;
    fontStyle?: string;
    offsetX?: number;
    offsetY?: number;
    opacity?: number;
    padding?: number;
    textAreaStretch?: boolean;
    verticalAlign?: "top" | "middle" | "bottom";
    wrap?: "none" | "word" | "char";
}

Hierarchy (view full)

Properties

align?: "center" | "left" | "right"
backgroundBorderRadius?: number | number[]
backgroundFill?: string
backgroundOpacity?: number
fill?: string
fontFamily?: string
fontSize?: number
fontStyle?: string
offsetX?: number
offsetY?: number
opacity?: number
padding?: number
textAreaStretch?: boolean
verticalAlign?: "top" | "middle" | "bottom"
wrap?: "none" | "word" | "char"