java - JavaFX Timeline control -
i want create scrollable timeline controller circles connected baseline filled number ( size of circle corresponding containing number) , trailing icon.
since new javafx have no idea how start. in swing e.g. use jpanel , ovverride onpaint() method draw circles, lines , icons...
in javafx thought using horizontal listview custom listcell, not sure if baseline possible it. looking ideas how implementiert such controll...

try using hbox wrapped inside scrollpane.
you can add elements hbox using getchildren.add(node). elements automatically shown on scene , scrollpane adjust scrollbar you.
Comments
Post a Comment