I want to add dynamically labels to a pane :
for (int k = 0; k < traitement.quad.lqua.size(); k++)
{
Label l = new Label();
l.setText(traitement.quad.lqua.get(k));
apane.getChildren().add(l);
}
i don't want to have them in the same place i want to have one label by ligne , so where is the issue ?

apane?AnchorPaneis the white area where the labels are added? Is there anything else, that will be added to that pane?