Our state of the art Gantt chart


Post by bohpa »

How do we make a milestone, to be entered and placed at the end of the day instead of at the beginning of the day?

Reference:
Currently a milestone is positioned at the beginning of the day, with a duration of "0 days", however we should be able to perform the final task on that same day - the final task could have a duration of "1 day", so technically the final task and the milestone can be completed on the same day.


Post by ghulam.ghous »

Hi,

You can set the time part of the start and end date to 23:59 that will make sure to show the milestone at the end of day. You will also need to set the milestone's manuallyScheduled to true. Something like this:

              {
                "id"          : 11,
                "name"        : "MileStone",
                "startDate": "2019-01-14 23:59:59",
                "endDate": "2019-01-14 23:59:59",
                "manuallyScheduled": true
              },

Regards,
Ghous


Post by bohpa »

Thank you Ghous!
Worked well.


Post Reply