Dhtmlx Gantt Datetimeoffset string

Does the gantt have any built in methods to create a date from a C# DateTimeOffset string?

for example:

The server returns this string value for an end date

"2020-03-13T12:00:00+00:00"

Are there any date methods to convert this to a Date object
of March 3, 2020 12PM?

Hi @iabukhdair,
The gantt has the built-in str_to_date method, but it will work only if you will substring the T symbol from your server output, here is an example:
http://snippet.dhtmlx.com/f4bd9200a

Also, you can create the date object from this string using the default Javascript date constructor:
var dateFromStr = new Date("2020-03-13T12:00:00+00:00")
After that, you will be able to format this date object using a gantt built-in method date_to_str.
Here is an example(open the console):
http://snippet.dhtmlx.com/5609af6ee

API:
Date

Operations with Dates:
https://docs.dhtmlx.com/gantt/desktop__date_operations.html

Thanks that was very helpful.