AnnoMark
TypeSource
AnnoMark(
x: float,
y: float,
width: float,
height: float,
type: "RECT",
)
AnnoMark
is a TypedDict
.
The mark
property in the annotation item.
Aliases
This type can be acquired by
import dash_picture_annotation as dpa
dpa.AnnoMark
dpa.typehints.AnnoMark
Keywords
Keyword | Type | Required | |
---|---|---|---|
x | float | The x (horizontal) position of the upper left corner of the annotation item. | |
y | float | The y (vertical) position of the upper left corner of the annotation item. | |
width | float | The width of the bounding box. | |
height | float | The height of the bounding box. | |
type | "RECT" | The type of the annotation shape. Currently, we only support "RECT" (rectangle). |