@inweb/viewer-visualize
    Preparing search index...

    Interface IMarkupEllipseParams

    Defines the parameters for creating a markup ellipse.

    interface IMarkupEllipseParams {
        color?: string;
        id?: string;
        lineWidth?: number;
        position?: { x: number; y: number };
        radius?: { x: number; y: number };
    }
    Index

    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"
    
    id?: string

    Internal markup object identifier.

    lineWidth?: number

    Line width.

    4
    
    position?: { x: number; y: number }

    Coordinates of the center point (position) of the ellipse.

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

    Radius of the ellipse along the X and Y axes.

    25