Hi everybody.
The question is about AxisItem.tickValues.
The returned values, according to documentaion, is this:
[
(spacing, [major ticks]),
(spacing, [minor ticks]),
...
]
The sample for it:
[
(10000.0, [40000.0, 50000.0, 60000.0]),
(2000.0, [36000.0, 38000.0, 42000.0, 44000.0, 46000.0, 48000.0, 52000.0, 54000.0, 56000.0, 58000.0])
]
The question is - what is the meaning of 'spacing'?
Yep, I can see that is is spacing between the ticks. But
1. 'spacing' is redindant.
2. What if 'spacing' is not equal to real difference between neighbour-ticks?
3. What I have to do if difference between neighbour-ticks is not constant? This situation can be, for example, if tick means 1st day in month, anв days in monthes if different.