This topic demonstrates, with code examples, how to use the OrdinalTimeXAxis in the XamDataChart control. The benefit of using this axis is to dynamically change DateTime label formats as you zoom in or out of your data.
The OrdinalTimeXAxis may be used with the following series:
The main difference between the OrdinalTimeXAxis and the TimeXAxis is that in the ordinal axis, the dates displayed are assumed to be equidistant. The TimeXAxis currently sorts and aligns them according to a chronological timescale.
Below is a code example on how to add the OrdinalTimeXAxis to the chart:
Below is a screenshot demonstrating the usage of the OrdinalTimeXAxis with a FinancialPriceSeries:

The OrdinalTimeXAxis has the LabelFormats property which is a collection of type TimeAxisLabelFormat. Each TimeAxisLabelFormat added to the collection is responsible for assigning a unique Format and Range. This can be especially useful for drilling data from years to milliseconds and adjusting the labels depending on the range of time shown by the chart.
The following lists a typical set of label formats for the given amount of time in view:
1825 days or more (eg. 5 years) will result in a format of "yyyy".
365 days or more (eg. 1 year) will result in a format of "MMM yy".
1 day or more will result in a format of "MMM-dd-yy".
5 hours or more will result in a format of "hh:mm".
Below 5 hours will result in a format of "hh:mm:ss".
Below is a screenshot demonstrating the usage of the OrdinalTimeXAxis with a FinancialPriceSeries with label formatting:
