Defines the markup arrow object of the viewpoint.

interface IArrow {
    color?: string;
    end: IPoint;
    id?: string;
    start: IPoint;
}

Properties

Properties

color?: string

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

end: IPoint

Coordinates of the end point of arrow.

id?: string

Internal markup object identifier.

start: IPoint

Coordinates of the start point of arrow.