Hi team,
I want to create a pie chart that used more filter values. The pie chart option in Reports has an option to choose only 1 filter criteria.
For eg: I want to filter based on project team name, status and also say automation status - how to write a JQL and get a pie chart. I am aware of the JQL, but I am not sure how to use the JQL and build the pie chart in JIRA.
Can you pls help?
Hi @THE STORY TELLER ,
in pie chart gadget configuration you need to set two parameters:
It seems to me you mean you want to have more parameters for grouping, but this is not possible using pie chart gadget.
Use can use Two Dimensional Filter Statistics gadget to have two fields for grouping available.
Thank you Hana. I have seen in my earlier company where they used more than 1 filter.
Eg: Label ="xyx", status = "closed" and issuetype = "test" and automation ="Complete"
So this pie chart query will give all test cases for the team xyz, which are closed and automation is completed. With this I want to show a pie chart that will show completed, planned and cannot be automated automation cases as a pie for that team.
But I am not sure how it was done.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @THE STORY TELLER ,
sure you can search issues using JQL like:
labels in ("xyz") AND status = "Closed" AND issuetype = "test" AND automation = "Complete"
If you are happy with the result, you can save this JQL as filter and use this filter in pie chart gadget in parameter Project of Saved Filter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Hana Kučerová
Can I create a Pie Chart from the result of this JQL you shared?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.