Interface ICanvasMutableProps

Mutable properties for canvas configuration.

interface ICanvasMutableProps {
    __mutableProp?: null;
    dpr?: number | "auto";
    height?: number | "auto";
    width?: number | "auto";
}

Hierarchy (View Summary)

Properties

__mutableProp?: null
dpr?: number | "auto"

Device Pixel Ratio (DPR). Use 'auto' for automatic detection.

'auto'
height?: number | "auto"

Canvas height. Use 'auto' to match the container's height.

'auto'
width?: number | "auto"

Canvas width. Use 'auto' to match the container's width.

'auto'