java - Changing the colour of slider ticks -
i'm attempting change colour of ticks slider in javafx 2.2, coming bit short - can't find css properties on slider claim this, , can't find methods on slider seem either (there seems property formatting tick labels, not marks themselves.)
is there way, or stuck drawing myself?
use style description ticks , blue color :
.slider .axis .axis-tick-mark, .slider .axis .axis-minor-tick-mark { -fx-fill: null; -fx-stroke: blue; }
the first - major, second - minor.
Comments
Post a Comment