marker.js 3 Documentation
    Preparing search index...

    Interface FreehandMarkerState

    Represents the state of a freehand marker.

    interface FreehandMarkerState {
        notes?: string;
        opacity?: number;
        points: IPoint[];
        strokeColor?: string;
        strokeDasharray?: string;
        strokeWidth?: number;
        typeName: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    notes?: string

    Additional information about the marker.

    opacity?: number

    Marker's opacity.

    points: IPoint[]

    Points of the freehand line.

    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.