Skip to main content
Version: 2.4.0

Bounded box

A bounded box is an infinitely customizable image annotation component that can be used to select and tag areas of an image. It supports selection using specific points (landmarking) or draw rectangular areas (bounding boxes).

Bounded Box

Properties

Bounded Box

Image URL

The bounding box required an image to display, enter the URL of the image to display it on the component.

Selector

The bounded box support selection using:

  • Rectangle
  • Point

You can also click on the Fx to set the value programmatically.

List of labels

This property will include the list of label that will be displayed in the dropdown while selection in the bounded-box. This property requires the label in array format.

Events

To add an event to a bounded-box, click on the component handle to open its properties on the right. Go to the Events accordion and click on Add handler.

Button group events

On change

On change event is triggered when the label from the dropdown in the selector is changed in the bounded box. Just like any other event on ToolJet, you can set multiple handlers for on-change event.

info

Check Action Reference docs to get the detailed information about all the Actions.

General

Tooltip

A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget.

Under the General accordion, you can set the value in the string format. Hovering over the component will display the string as the tooltip.

Button group Tooltip

Layout

Button group layout
LayoutdescriptionExpected value
Show on desktopToggle on or off to display desktop view.You can programmatically determine the value by clicking on Fx to set the value {{true}} or {{false}}
Show on mobileToggle on or off to display mobile view.You can programmatically determine the value by clicking on Fx to set the value {{true}} or {{false}}

Styles

Bounded box properties
StyleDescription
VisibilityToggle on or off to control the visibility of the component. You can programmatically change its value by clicking on the Fx button next to it. If {{false}} the component will not be visible when the app is loaded. By default, it's set to {{true}}.
DisableToggle on to disable the widget. You can programmatically change its value by clicking on the Fx button next to it, if set to {{true}}, the component will be disabled and becomes non-functional. By default, its value is set to {{false}}.
info

Any property having Fx button next to its field can be programmatically configured.

Exposed variables

variableDescription
annotationsThis variable is an array of objects, where each object represents an annotation added to an image. The object contains the following keys: type, x, y, width, height, text, and id
annotations.typeThere are two types of annotations: Rectangle and Point
annotations.xcoordinates on x axis
annotations.ycoordinates on y axis
annotations.widthwidth of annotation
annotations.heightheight of annotation
annotations.textlabel selected for the annotation
annotations.idunique id of the annotation (system generated)

The values can be accessed dynamically using {{components.boundedbox1.annotations[0].text}} or {{components.boundedbox1.annotations[1].width}}

Component specific actions (CSA)

There are currently no CSA (Component-Specific Actions) implemented to regulate or control the bounding box component.