Lucidspark Library
Freehand Drawing
Property | Description | |
---|---|---|
style | Freehand Drawing Style A line style specific to freehand drawings. | Required |
points | Array[AbsolutePosition] An array of positions that define the shape of the freehand drawing. | Required |
offset | AbsolutePosition The position of the freehand drawing. All points are relative to the offset. | Optional |
{
"id": "shape50",
"type": "freehandDrawing",
"style": { ... },
"points": [ ... ],
"offset": { ... },
"note": "Test Note"
}
Freehand Drawing Style
Spark Callout Square
{
"id": "shape51",
"type": "sparkCalloutSquare",
"boundingBox": { ... },
"style": { ... },
"text": "Text",
"actions": [ ... ],
"customData": [ ... ],
"linkedData": [ ... ],
"opacity": 100,
"note": "Test Note"
}
Spark Container
This shape's bounding box is incompatible with the rotation property.
Property | Description | |
---|---|---|
magnetize | Boolean Determines whether shapes within the container move with the container. Defaults to true. | Optional |
{
"id": "shape52",
"type": "sparkContainer",
"boundingBox": { ... },
"style": { ... },
"text": "Text",
"magnetize": true,
"actions": [ ... ],
"customData": [ ... ],
"opacity": 100,
"note": "Test Note"
}
Spark Frame
This shape's bounding box is incompatible with the rotation property.
Property | Description | |
---|---|---|
magnetize | Boolean Determines whether shapes within the container move with the container. Defaults to true. | Optional |
{
"id": "shape53",
"type": "sparkFrame",
"boundingBox": { ... },
"style": { ... },
"title": "Frame 1",
"magnetize": true,
"actions": [ ... ],
"customData": [ ... ],
"opacity": 100,
"note": "Test Note"
}
Updated 7 months ago