To make the horizontal axis more intelligent and to improve the way horizontal axis handles user data, several new features are introduced:
Ticks Distance - allows you to provide your own custom interval for tick marks
Label rotation angle – allows you to skew the labels and choose the angle in order to use the X axis in the most efficient way
Label step – a very convenient feature in a scenario when there are too many labels and they start overlap on the AxisX. What LabelStep does is kind of “sampling” operation where the criteria is ordinal e.g.
1….2….3….4….5….6….7….8….9….10
with LabelStep=2 will look like
1………..3……….5……….7……….9
Top