Milestone Slip chart

eazyBI does not support this by default. However, there might be some workarounds you can check.

  1. If you are using the custom date field, here is a community topic that will allow importing the changes with the calculated JavaScript custom field:
    How can i show the change history of date custom field?

  2. Unfortunately, we do not support value changes import for a default field Due date . Therefore, you would like to consider using some scripted fields in Jira. Here are some examples for inspiration:
    Jira calculated and scripted custom fields - eazyBI for Jira

However, you might need a bit different output there. You would like to get the data in this format for the field due date change :
Date when due date1 is set,duedate1timestamp
Date when due date2 is set,-duedate1timestamp
Date when due date2 is set,duedate2timestamp

This pattern of data is the result of the javascript is community. You would like to use a specific definition (similar to one used in the javaScript example) for Jira scripted field imported field:

[jira.customfield_NNNNN] 
data_type = "integer"
measure = true 
multiple_dates = true

You would like to use the scripted field ID instead of NNNNN in the formula.

Then you would like to use a similar MDX formula from the community example to get the due date history .

For any of the above solutions, the report should use individual issues for each line.
here is a report example for changes in the custom field Program end for one issue. The report shows that the program end date was set to Jun 12 2020 on Oct 2019, then
it was updated to Jan 2021 on May 2020:

Daina / support@eazybi.com