How do i create a pie chart to by epic to reflect user story, sub-task, story points and % complete

Narcisse W Choo-Akung
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 6, 2019

Using this JQL query:

project = ENTPRS AND (issue in subtaskIssuesFromquery("'epic link' = ENTPRS-xxxxx") OR "epic link" = ENTPRS-xxxxx OR parent in (ENTPRS-xxxxx) OR parent in linkedIssues(ENTPRS-xxxxx)) ORDER BY Rank ASC

I am able to create a pie chart with all issue types,

How can i modify the below JQL query to include user sub-task and story points 

"Epic link" = ENTPRS-xxxxx and "Story Points" = 3 

1 answer

0 votes
Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 1, 2021

You can’t include sub-tasks using the epic link field since sub-tasks don’t have this field unfortunately. Here is one idea you could consider:

  • Create a custom field that can be used to store the epic or use labels for this.
  • If on Cloud - use Automation to update this field copying the story’s epic link into the sub-task. This could be achieved on server with similar addons

Suggest an answer

Log in or Sign up to answer