Skip to main content

Label Style Options

Complete reference for label styling options.

Properties

PropertyTypeDefaultDescription
colorstring"#000"Text color
radiusnumber12Label circle radius
font_sizestring"12px"Font size for label text
backgroundstring"#ffffff"Background color

Example

style: {
label: {
color: "#333",
radius: 14,
font_size: "13px",
background: "#f5f5f5"
}
}

Usage

Labels are defined in block data:

{
blocks: [{
id: 1,
title: "Section A",
labels: [
{ title: "Row 1", x: -40, y: 0 },
{ title: "Row 2", x: -40, y: 40 }
],
seats: [...]
}]
}