marker.js 3 Documentation
    Preparing search index...

    Interface ShapeMarkerBaseState

    Represents filled shape's state.

    interface ShapeMarkerBaseState {
        containerTransformMatrix?: ITransformMatrix;
        fillColor: string;
        height: number;
        left: number;
        notes?: string;
        opacity?: number;
        rotationAngle: number;
        strokeColor?: string;
        strokeDasharray?: string;
        strokeWidth?: number;
        top: number;
        typeName: string;
        visualTransformMatrix?: ITransformMatrix;
        width: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    containerTransformMatrix?: ITransformMatrix

    Container transform matrix.

    Used to correctly position and rotate marker.

    fillColor: string

    Marker's fill color.

    height: number

    Marker's height.

    left: number

    x coordinate of the top-left corner.

    notes?: string

    Additional information about the marker.

    opacity?: number

    Marker's opacity.

    rotationAngle: number

    Marker's rotation angle.

    strokeColor?: string

    Marker's stroke (outline) color.

    strokeDasharray?: string

    Marker's stroke (outline) dash array.

    strokeWidth?: number

    Marker's stroke (outline) width.

    top: number

    y coordinate of the top-left corner.

    typeName: string

    Marker's type name.

    visualTransformMatrix?: ITransformMatrix

    Visual transform matrix.

    Used to correctly position and rotate marker.

    width: number

    Marker's width.