I am using the JFoenix library for JavaFX, and I wanted to display the check box label to the left of the box.
From (default) :
To:
Looking at the available methods, this is the only thing that reads as it would work but it does not do anything (I am guessing it is just for other graphics):
checkBox.setContentDisplay(ContentDisplay.LEFT);
// checkBox.setContentDisplay(ContentDisplay.RIGHT);
Is there another method or css styling to get the label on the left? Thank you