Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The customer created How do we have a two-axis chart where they wanted to apply the following JQLs:and two different JQLs to be applied on the chart? How can both filters be added if adding two different JQLs is impossible?

Code Block
Axis 1: (project in (ATLS, LNXENG) AND created >= startOfYear() AND issueFunction in dateCompare("", "resolutionDate <= End Date"))
Code Block
Axis 2: project in (ATLS, LNXENG) AND created >= startOfYear() AND issueFunction in dateCompare("", "resolutionDate > End Date")

...

\uD83D\uDCD8 Instructions

Since it’s not possible to add two different JQLs to both axes, the workaround is the following:

...

Code Block
project in (ATLS, LNXENG) AND created >= startOfYear()

...

2. Add the date compare part as a filter for each axis.

...

Axis 1:

...

Axis 2:

...