Hi Antony,
It can be done in the latest release:
IvyOptions.ToDateFormatMonthFirst = true;
If you are using IvyTemplateEditor it can be set on the template level (Template Settings / Template Custom Code):
protected override void Init()
{
IvyOptions.TableCellType = TableCellType.String;
IvyOptions.ToNumberCultureInfo = new CultureInfo("fr-FR");
IvyOptions.ToDateFormatMonthFirst = true;
}
Regards,
Ivy Team