Starting from version 1.5 the widget supports showing the actual vs initial schedule.
TABLE OF CONTENTS
One time comparison
You can compare the current schedule with past dates easily by selecting the historical moment.
Since version 25.3.0 there is an improved dialog allowing you to compare based on specific date, Baseline or Revision.
See how it works:
Show difference all time
Since version 2.4.0 you may show the difference any time you open a Gantt view. The Baselines Widget properties section let you select the historical moment in the past that should be used as default reference point for comparison, so any time you open the gantt, the difference to this moment will be shown.
So open Widget properties > Baselines and turn :"Show Baselines" to YES.
You can compare it with:
- relative date (T-minus)
- any particular date in a history
- or let the user pick the date using page parameters
Highlight newly added tasks
Since version 25.3.0 we polished the feature that marks tasks with a NEW badge when comparing the current state with any historical version — whether by date, Revision, or Baseline. The badge appears next to tasks that were created after the selected comparison point, helping you quickly spot newly added work items.

API Approach
Since version 1.5.0 you can also pass values using an API. To do so, you need to use the Advanced > Item Script parameter, and fill in the value from a Custom Field, or load it from history.
Let's suppose you have two additional custom fields: gantt_initial_start and gantt_initial_duration, and you have workflow action, that copies gantt_start to gantt_initial_start (resp. gantt_duration to gantt_initial_duration) during a workflow transition "approveSchedule", so you can use Advanced > Item Script parameter
task.planned_start_date=util.getDate(wi, "gantt_initial_start");
task.planned_duration=util.getDuration(wi, "gantt_initial_duration")
This will compare the schedule not a single moment in history, but it will be item-specific values.
If you need any assistance, feel free to reach out to us by submitting a ticket here.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article