Custom date output is not displayed correctly

Hi,

I'm facing an issue that UI displaying incorrect DateTime result. It suppose to show me the date same as DB result.

In UI it shows
image

However, in DB is store as

image

And in radzen, i use custom date format as below

The timezones are probably different. You can try Radzen's utcDate pipe which tries to display a date as it has been returned from the server: ${data.DateCreated | utcDate : 'dd/MM/yyyy hh:mm'}

Hi,

It works after changed from Date to utcDate.

Thanks.