edvin
02/09/2018, 6:43 AMroot.add(label(title), i.colIndex, i.rowIndex, i.colSpan, i.rowSpan). Remember that when you call the function label() you actually call it on the nearest Parent Node. So doing root.add(label() will first add the label to whatever Node this represents, then you add it to the root. If what you're trying to achieve is to create a Label manually and then call root.add with the Label as a parameter you simply can't use the builders. That's not what they are for 🙂