import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.geometry.NodeOrientation; import javafx.scene.control.ColorPicker; import javafx.stage.Stage; public class ColorPickerTest extends Application { @Override public void start(Stage stage) throws Exception { Group root = new Group(); ColorPicker colorPicker = new ColorPicker(); colorPicker.setNodeOrientation(NodeOrientation.RIGHT_TO_LEFT); root.getChildren().add(colorPicker); stage.setScene(new Scene(root, 300, 200)); stage.setTitle("ColorPicker Test " + System.getProperty("javafx.runtime.version")); stage.show(); } public static void main(String[] args) { launch(args); } }