i want a border that consists only of dots on the ...
# tornadofx
m
i want a border that consists only of dots on the bottom edge. -fx-border-style: dotted gets me nearly there, but the pattern starts half way through a dot!
r
mikehearn: Do you have an example? This works perfect for me:
Copy code
-fx-border-width: 0px 0px 10px 0px;
-fx-border-style: dotted;
m
Which JDK release are you on? If I do that, it "works" but i get semicircles at either end.
r
8u131 64b Windows. I get full circles at both ends.