marker.js 3 Documentation
    Preparing search index...

    Interface ArrowMarkerState

    Represents the state of the arrow marker.

    interface ArrowMarkerState {
        arrowType: ArrowType;
        notes?: string;
        opacity?: number;
        strokeColor?: string;
        strokeDasharray?: string;
        strokeWidth?: number;
        typeName: string;
        x1: number;
        x2: number;
        y1: number;
        y2: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    arrowType: ArrowType
    notes?: string

    Additional information about the marker.

    opacity?: number

    Marker's opacity.

    strokeColor?: string

    Marker's stroke (outline) color.

    strokeDasharray?: string

    Marker's stroke (outline) dash array.

    strokeWidth?: number

    Marker's stroke (outline) width.

    typeName: string

    Marker's type name.

    x1: number

    x coordinate for the first end-point.

    x2: number

    x coordinate for the second end-point.

    y1: number

    y coordinate for the first end-point.

    y2: number

    y coordinate for the second end-point.