Issue state

Issue state

Applies to

Navigation

Above the chart

Use the Issue state setting to define which issues will be included in your chart.

By default, the Completed issues scope is selected. It means that the work item was in a Done status (from the default Done category or your custom Done statuses) at least once during the selected interval.

For example, in the screenshot below, the graph includes work items that were completed (1️⃣) within the last 6 bi-weeks (2️⃣):

image-20251211-133443.png

Options

Completed issues

Work items that have transitioned to a Done status at least once during the selected interval. The issue doesn’t need to be created within the same time frame.

JQL query

status CHANGED TO (custom_done..) DURING (time_frame_start, time_frame_end)

Status-changed issues

Includes all issues that changed their status at least once during the selected time frame, even if they remained within the same status category (for example, from one In Progress status to another).

In Jira, “Created” and “Completed” events are also treated as updates, so the Status-changed issues option includes newly created and completed issues as well.

image 7.png

JQL query

(created >= time_frame_start AND created <= time_frame_end) OR status CHANGED DURING (time_frame_start, time_frame_end)

Open issues

Includes all issues that were created, in progress, or completed during the selected interval.

JQL query

created >= time_frame_start AND created <= time_frame_end OR status WAS IN (in progress..) DURING (time_frame_start, time_frame_end) OR status CHANGED TO (custom_done..) DURING (time_frame_start, time_frame_end)