4.13  <group>

This container groups several child elements together in order to treat them as a whole. You can use the group for building complex child elements for containers which accept only one child element, such as the <array>, or the <gauge>.

Empty groups with a forced size and some background can be used as colored or textured rectangles.

4.13.1  Attributes

Name Type Default Value Description
bg-color color #00000000 The background color of the group. You can use the alpha channel for color values to achieve translucency.
bg-uri URI The background image of the group. Overrides bg-color. If the image does not fit the window, it gets tiled over it.

4.13.2  Examples

<group id="lgroup">
  <label id="label1" value="label1"/>
  <label id="label2" value="label2" relative-to="label1, xy"
      x="10" y="10"/>
</group>
<label relative-to="lgroup, y" y="25" value="label3"/>