defines date formats that are used to parse data from a data set and to send data to a server
The property is deprecated.
gantt.config.xml_date="%Y-%m-%d %H:%i";
...
gantt.init("gantt_here");
gantt.load("../data/tasks.json");
The xml_date property is deprecated. Use date_format instead:
gantt.config.date_format = "%Y-%m-%d %H:%i";
...
gantt.init("gantt_here");
gantt.load("../data/tasks.json");
deprecated since v6.2, removed since v7.0
Back to top