Interface IMarkupArrowParams

Defines the parameters for creating a markup arrow.

interface IMarkupArrowParams {
    color?: string;
    end?: { x: number; y: number };
    id?: string;
    start?: { x: number; y: number };
}

Properties

Properties

color?: string

Line color as a string in hexadecimal color syntax #RGB color using its primary color components (red, green, blue) written as hexadecimal numbers.

"#ff0000"
end?: { x: number; y: number }

Screen coordinates of the end point of arrow.

id?: string

Internal markup object identifier.

start?: { x: number; y: number }

Screen coordinates of the start point of arrow.