I'm not sure if this is even possible. But basically I want to change the values of a NumberAxis
in JavaFX to Strings.
final NumberAxis xAxis = new NumberAxis(0, 40, 1);
So what I now want to change is the numbers 0 - 40 to any String.
Another Question is. I have added Regions
to my Chart
so it displays 'Bars' on specific values. Whenever I change the 'Startvalue' of my xAxis to any higher than '0', the Bars randomly disappear. Why is that?