Thanks Stoyo,
for now until you implement the new table feature I will aim for the box and attach control host variant.
I couldn't find an example with void AttachTo( Node node, float percentX1, float percentY1, float percentX2, float percentY2); in the samples or help file. So I hope you can help me out with this.
I tried the following but the controlHosts stick to the upper left corner of the document and disappear as soon I move the box.
btChart.BoxStyle = BoxStyle.Rectangle;
Box masterBox = btChart.CreateBox(10, 10, 90, 60);
ControlHost control1 = btChart.CreateControlHost(0, 0, 30, 30);
ControlHost control2 = btChart.CreateControlHost(0, 0, 30, 30);
control1.AttachTo(masterBox, 0F, 0F, 0.333F, 0.50F);
control2.AttachTo(masterBox, 0.333F, 0F, 0.667F, 0.50F );
The code should show up control 1 in the top left with a width of 33% of the masternode and 50% of the height. Control 2 should appear to the right of control 1.
Thanks
Dirk