Versions Compared

Key

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

...

Drawio
mVer2
zoom1
simple0
inComment0
custContentId7194247199
pageId7177437201
lbox1
diagramDisplayNamedimensions.drawio
contentVer3
revision3
baseUrlhttps://actonic.atlassian.net/wiki
diagramNamedimensions.drawio
pCenter1
width572.01
links
tbstyle
height632.5

Group

Format

Filter

Dimension filters allow to Groupers in pivot tables are essential for organizing and summarizing data effectively. They allow you to aggregate data by specific categories or time periods, making it easier to analyze patterns and trends. This helps in gaining insights from large datasets by breaking them down into manageable, meaningful chunks.

Different dimensions support various grouping options. For example, all date and time-related dimensions can be grouped by day, week, or month.

Example:

Code Block
languagejs
...
cols: [
  { 
    name: 'created', 
    group: { name: 'year' },
  },
],
...

Format

A formatter in a pivotopia is a configuration option, that allows you to apply different styles and formats to the cells within the table. This includes customizing how numbers, dates, and text are displayed, and setting up different formats for headers, totals, and data cells. It enhances readability and helps emphasize important information in your data.

Example:

Code Block
languagejs
...
cols: [
  { 
    name: 'created', 
    group: { name: 'month' }, 
    format: {name: 'monthShort'},
  },
],
...

Filter

A filter is a feature that allows you to display only the data that meets certain criteria. By applying filters, you can focus on specific subsets of your data, such as a particular date range, category, or value, making it easier to analyze relevant information and draw insights from your data.

Example:

Code Block
languagejs
...
cols: [
  { 
    name: 'created', 
    filter: { name: 'dateTimeInDateRange', values: ['2023-01-01', '2023-05-17'] },
  },
],
...

System Dimensions (Jira System fields)

...

Name

Display Name

Scheme

Type

Category

Description

countOfIssues

Count of Issues

Issue

Number

Count

Counts issues regardless of their statusesof their statuses. In Format you can also select display with bar to get visual display of percentage of issues in a group compared to the total count of issues.

countOfOpenedIssues

Count of Opened Issues

Issue

Number

Count

Counts issues where issues resolution is EMPTY

countOfResolvedIssues

Count of Resolved Issues

Issue

Number

Count

Counts issues where resolution is not EMPTY

countOfStatusChanges

Count Of Status Changes

Issue

Number

Count

Counts number of times the issue changed its status

sumLoggedTime

Sum of logged time

issue.worklog

Duration

Sum

sumOfOriginalEstimate

Sum of Original Estimate

Issue

Duration

Sum

Sum of values from Original estimate field

sumOfTimeRemaining

Sum of Time remaining

Issue

Duration

Sum

Sum of values from Time remaining field

sumOfVotes

Mean of Votes

Issue

Number

Sum

latestIssueCreationDate

Latest Issue Creation Date

Issue

Date

Date

Calculates the latest date of the issue creation in a selected scope of issues

newestIssueCreationDate

Newest Issue Creation Date

Issue

Date

Date

Calculates the latest date of the issue creation in a selected scope of issues

sumOfAgeBusinessDays

Sum of Age (Business days)

Issue

Duration

Sum

Sum of “Age (Business days since creation)” calculated field values

sumOfAgeCalendarDays

Sum of Age (Calendar days)

Issue

Duration

Sum

Sum of “Age (Calendar days since creation)” calculated field values

sumOfBusinessDaysSinceUpdate

Sum of Business Days since last update

Issue

Duration

Sum

Sum of “Business Days since last update” calculated field values

sumOfCalendarDaysSinceUpdate

Sum of Calendar Days since last update

Issue

Duration

Sum

Sum of “Calendar Days since last update” calculated field values

progressByIssue

Progress by issues

Issue

Percent

Percent

Calculates progress by count of resolved or open issues relative to the total count of issues

progressByTime

Progress by time

Issue

Percent

Percent

Calculates progress based on time spent or remaining estimate relative to the original estimate

Format

Depending on the measure type, there could be a few possible formatting options.

...