Issue with Time series 'None' option for Javascript chart

Issue #67 resolved
Ashwin Yerawar created an issue

Unable to plot graph of open issues with java script chart. I am using 'None (Sum of existing Issues)' for plotting this graph.

I am using below query to build graph:

project = "xxxx" AND issuetype = Bug AND "Release Version" in (CU010, CU011, CU012)

I am getting below error while building JQL:

Error in JQL Query: The IN operator does not support the use of the during (startOfDay(), endOfDay()) predicate.

If I use same query to filter issues, I am getting correct results, so I guess query should be fine.

Is there any other way to generate graph of open bugs?Open_Issue_graph.PNG

Comments (2)

  1. boydo repo owner

    Hi @ashwinay Sorry for the delay. You need to use "was in" for plotting open issues over time ie. when using None(sum of existing issues)

    project = "xxxx" AND issuetype = Bug AND "Release Version" was in (CU010, CU011, CU012)
    

    hope that helps!

    David

  2. Log in to comment