how to set xml_date format

data server return format

id: "pu201605181508057824080",
text: "New project",
start_date: "2016-05-18T00:00:00",
end_date: "2016-08-18T00:00:00",
duration: 92,
progress: 0,
sortorder: 0,
parent: null,
type: "project"

I have set gantt chart

gantt.config.xml_date = "%Y-%m-%dT%H:%i:%s";

fail format? please help me. thank you

Hello,

While specifying the format for dates you can use only following characters:
docs.dhtmlx.com/gantt/desktop__date_format.html

You could use xml_date template for correct display of the date format. Sample:
docs.dhtmlx.com/gantt/snippet/f6ef9a2a

thank you.