I am having at least 3 types of Date , Actual , Auto Forecasted, Planned date.
I wan to show my task based on the least of date as start date and max of all the dates as end date to manage my gantt chart. So that when user click on task it should be able to see all these 3 type of date in lightbox. Task can support 2 dates in task like start_date and planned_start to configure. Is there a way to show 3 or more than 3 dates category in lightbox which can be mapped as input from the data object binded to gantt chart like this
{name: “actual”, type: “duration”, map_to: “auto”,id: “actual”},
{name: “forecasted”, type: “duration”, map_to: “auto”},
{name: “planned”, type: “duration”, map_to:{start_date:“planned_start”,end_date:“planned_start”}},
How to map the forecasted date which is coming in my dataset?