Interface CircleProps

interface CircleProps {
    __value?: string | number | (string | number)[];
    anchorX?: number;
    anchorY?: number;
    anid?: string;
    autoBatch?: boolean;
    batch?: boolean;
    buildPath?: ((ctx, shapeCfg, inBatch?) => void);
    clipPath?: Path<PathProps>;
    culling?: boolean;
    cursor?: string;
    draggable?: boolean | "horizontal" | "vertical";
    drift?: ((dx, dy, e?) => void);
    extra?: Dictionary<unknown>;
    globalScaleRatio?: number;
    ignore?: boolean;
    ignoreClip?: boolean;
    ignoreCoarsePointer?: boolean;
    incremental?: boolean;
    invisible?: boolean;
    isGroup?: boolean;
    name?: string;
    onclick?: ElementEventCallback<unknown, unknown>;
    oncontextmenu?: ElementEventCallback<unknown, unknown>;
    ondblclick?: ElementEventCallback<unknown, unknown>;
    ondrag?: ElementEventCallback<unknown, unknown>;
    ondragend?: ElementEventCallback<unknown, unknown>;
    ondragenter?: ElementEventCallback<unknown, unknown>;
    ondragleave?: ElementEventCallback<unknown, unknown>;
    ondragover?: ElementEventCallback<unknown, unknown>;
    ondragstart?: ElementEventCallback<unknown, unknown>;
    ondrop?: ElementEventCallback<unknown, unknown>;
    onmousedown?: ElementEventCallback<unknown, unknown>;
    onmousemove?: ElementEventCallback<unknown, unknown>;
    onmouseout?: ElementEventCallback<unknown, unknown>;
    onmouseover?: ElementEventCallback<unknown, unknown>;
    onmouseup?: ElementEventCallback<unknown, unknown>;
    onmousewheel?: ElementEventCallback<unknown, unknown>;
    originX?: number;
    originY?: number;
    progressive?: boolean;
    rectHover?: boolean;
    rotation?: number;
    scaleX?: number;
    scaleY?: number;
    segmentIgnoreThreshold?: number;
    shape?: Partial<CircleShape>;
    silent?: boolean;
    skewX?: number;
    skewY?: number;
    strokeContainThreshold?: number;
    style?: PathStyleProps;
    subPixelOptimize?: boolean;
    textConfig?: ElementTextConfig;
    textContent?: Text;
    x?: number;
    y?: number;
    z?: number;
    z2?: number;
    zlevel?: number;
}

Hierarchy (view full)

Properties

__value?: string | number | (string | number)[]
anchorX?: number

Will translated the element to the anchor position before applying other transforms.

anchorY?: number
anid?: string
autoBatch?: boolean
batch?: boolean
buildPath?: ((ctx, shapeCfg, inBatch?) => void)

Type declaration

    • (ctx, shapeCfg, inBatch?): void
    • Parameters

      • ctx: CanvasRenderingContext2D | default
      • shapeCfg: Dictionary<any>
      • Optional inBatch: boolean

      Returns void

clipPath?: Path<PathProps>
culling?: boolean
cursor?: string
draggable?: boolean | "horizontal" | "vertical"
drift?: ((dx, dy, e?) => void)

Type declaration

    • (dx, dy, e?): void
    • Drift element

      Parameters

      • dx: number

        dx on the global space

      • dy: number

        dy on the global space

      • Optional e: ElementEvent

      Returns void

extra?: Dictionary<unknown>
globalScaleRatio?: number
ignore?: boolean
ignoreClip?: boolean
ignoreCoarsePointer?: boolean
incremental?: boolean
invisible?: boolean
isGroup?: boolean
name?: string
onclick?: ElementEventCallback<unknown, unknown>
oncontextmenu?: ElementEventCallback<unknown, unknown>
ondblclick?: ElementEventCallback<unknown, unknown>
ondrag?: ElementEventCallback<unknown, unknown>
ondragend?: ElementEventCallback<unknown, unknown>
ondragenter?: ElementEventCallback<unknown, unknown>
ondragleave?: ElementEventCallback<unknown, unknown>
ondragover?: ElementEventCallback<unknown, unknown>
ondragstart?: ElementEventCallback<unknown, unknown>
ondrop?: ElementEventCallback<unknown, unknown>
onmousedown?: ElementEventCallback<unknown, unknown>
onmousemove?: ElementEventCallback<unknown, unknown>
onmouseout?: ElementEventCallback<unknown, unknown>
onmouseover?: ElementEventCallback<unknown, unknown>
onmouseup?: ElementEventCallback<unknown, unknown>
onmousewheel?: ElementEventCallback<unknown, unknown>
originX?: number

Origin of scale, rotation, skew

originY?: number
progressive?: boolean
rectHover?: boolean
rotation?: number
scaleX?: number
scaleY?: number
segmentIgnoreThreshold?: number
shape?: Partial<CircleShape>
silent?: boolean
skewX?: number
skewY?: number
strokeContainThreshold?: number
subPixelOptimize?: boolean
textConfig?: ElementTextConfig
textContent?: Text
x?: number
y?: number
z?: number
z2?: number
zlevel?: number