Custom labels text
RadChartView allows you to easily change the axes labels text by using a custom format provider class. This class must implement the IFormatProvider and ICustomFormatter interfaces. The key point in this class is that the Format method is called for each label and its "arg" parameter contains the current label text. The returned value will represent the new label.
Example 1: Changing the labels' texts to more human readable ones
Label Format
Then you can just change the horizontal axis LabelFormatProvider by using the corresponding property.
Assign Format Provider
Figure 1: Format Provider
Example 2: Showing the date part of a label only on day changes
DateTime Format Provider
Again you can just change the horizontal axis LabelFormatProvider by using the corresponding property.
Assign DateTime Format Provider
Figure 2: DateTime Format Provider
The above provider implementation is applicable only to axes working with DateTime objects ( DateTimeContinuousAxis and DateTimeCategoricalAxis ).