I have a StackedXYAreaChart similar to the one below:
On the Y-axis, inste
The static factory createStackedAreaChart() instatiates a NumberAxis
for the range. The NumberAxis
method createStandardTickUnits() creates the standard tick units, which may serve as an example for creating your own units. In particular, "If you don't like these defaults, create your own instance of TickUnits
and then pass it to the setStandardTickUnits()
method." There's more details here.