With JavaFX I want to move the vertical scroll bar of a scroll panel to the left side of the component, instead of the default right side. I tried to do it with -fx-alignment into CSS but not work.
.scroll-pane .scroll-bar:vertical {
-fx-alignment: LEFT; }
You could
Here's a quick draft:
ExternalScrollbar.java
style.css
Of course you have to activate the code with the hiding of the ScrollBars of the ScrollPane.