...
Define the issue state you want to include in the chart building. You can select the exact issue state scope from the following:
Done: only issues that were “Done” during the selected Time frame.
”Done” issues means also “Updated”. However, they do not have to be “Created” in the same Time frame.Updated (any status change): only issues where any status changes were made from the first date of the selected Time frame.
”Updated” issues do not have to be “Done”. It also means any status change during the same status category (for example, status change within the “In Progress” status category).
In Jira, "Created" counts as "Updated," so this option will include newly created issues as well.Created: only issues that were created during the selected Time frame.
”Created” issues do not have to be “Done”.Any: includes all issues within the selected Time frame, regardless of their state.
We used the folowwing JQL request to get the issue list for “Any” issue state selected:(created >= start AND created <= end) OR (status WAS IN (...in progress statuses) DURING (start, end)) OR (status CHANGED TO (...done statuses) DURING (start, end))
In Progress statuses
The In Progress Statuses option allows you to customize which statuses are considered "In Progress" for all your charts, whether it's Cycle Time Histogram, Time in Status Cycle Time, or Cycle Time Trend Charts. This flexibility lets you redefine what "In Progress" means for your workflow by including statuses that are typically categorized as "To Do" or "Done".
...