I have arrays of elements within a structure:
rsDoorInfo
{
tDoorNumArray:["701","702",...,"800"],
tStartDate:["17-JUN-2018 15:51:00",","17-JUN-2018 15:51:00",...,"17-JUN-2999 15:51:00"],
tEndDate:["17-JUN-2019 15:51:00", "17-JUN-2019 15:51:00",...,"17-JUN-2019 15:51:00"]
}
There are a 100 elements within each array. I am having trouble displaying this data on an ngx-datatable. I would like to be displayed as:
Door Number | Start Date | End Date
Is there any way of doing this without changing the data structure? Thank you.