Is it possible to have more than one field on the X or Y axis of the Two dimensional filter statistics gadget for the dashboard (without having to create an additional custom field that has the concatenated value of the two fields)?
Thank you!
The casing in for example VersionUnArchiveEvent is wrong it should be VersionUnarchiveEvent. I've fixed your example below:
import com.atlassian.jira.event.project.VersionReleaseEvent
import com.atlassian.jira.event.project.VersionUnreleaseEvent
import com.atlassian.jira.event.project.VersionArchiveEvent
import com.atlassian.jira.event.project.VersionUnarchiveEvent
if (event instanceof VersionArchiveEvent) {
def event = event as VersionArchiveEvent
} else if (event instanceof VersionUnarchiveEvent) {
def event = event as VersionUnarchiveEvent
} else if (event instanceof VersionReleaseEvent) {
def event = event as VersionReleaseEvent
} else if (event instanceof VersionUnreleaseEvent) {
def event = event as VersionUnreleaseEvent
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.