The time axis labels default to the US MDY format. I wish to have the option of defaulting to the UK DMY format. The following code works until I use the zoom.
// auto compute time axis labels xAxisLabels.CalcAutoAxisLabels();
if (xAxisLabels.AxisLabelsFormat == ChartObj.TIMEDATEFORMAT_MDY) xAxisLabels.AxisLabelsFormat = ChartObj.TIMEDATEFORMAT_DMY;
You should be able to set the TimeAxisLabels.EuroAutoFormatMonthDay property of your time axis labels to true. This will cause the auto-axis routines used in the zooming to always use European formated time axis labels.