Binding of text property on a Label node does not work properly. Binding however works fine for a Text node.
Ex:
Label myLabel = new Label();
myLabel.textProperty().bind(<observable value, StringProperty>);
When I use Text instead of Label, the value changes fine for the same observable value.
Ex:
Label myLabel = new Label();
myLabel.textProperty().bind(<observable value, StringProperty>);
When I use Text instead of Label, the value changes fine for the same observable value.