A custom Node which is working like a Slider.
- ! When you hold the mouse on it and drag upside the value is increased.
- ! When you hold the mouse on it and drag down side the value is decreased.
##Example Code
//initialize
DragAdjustableLabel dragAdjustableLabel = new DragAdjustableLabel(10, 0, 100);
//add it for example to a BorderPane
primaryStage.setScene(new Scene(new BorderPane(dragAdjustableLabel)));