I'm on javafx-8 and java8, trying to make an interactive chart.
So far I've implemented all the mouse actions (highlight on mouse over, drag&drop to change values etc), but I'm not able to implement any keyboard interactions (basically changing its value with arrow keys) because the nodes (i.e. pic below) in a chart cannot gain focus.
When I try to set the focusTraversable property is fails with exception
java.lang.RuntimeException: StackPane.focusTraversable : A bound value cannot be set.
I have tried setting it on the chart but it doesn't get propagated to the data points (nodes). Can someone please point me the right way? thanks!