Versions Compared

Key

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

We have to track progress by summarizing resolved vs unresolved issues.


Fetching more data from JIRA and binding them to the Table item

We need data to make any report those data obviously, therefore we need to fetch some data from JIRA in order to know whether an issue is resolved or not.

...

Click on the OK button to close the New Data Binding dialog. The Data Set's Resolved column is now binded to the Table:

Visualizing Resolved data as striketrhough issues

Once the data are binded to the item, we can use them. We will add a striketrhough line for the resolved issues instead of a new column on the table: edit the Issue Dynamic Text on the Table and replace the Javascrit from:

...

Preview the results: when the issue is Done then is displayed with a strikethrough line:

Grouping

Data on the Table is not grouped. Therefore we used the Data Set as input for the Pie Chart to group by Type. Data can also be grouped on tables: Select the Table item on the Outline view. Then expand its childen to see the Groups. Right click on it and select Inser group:

...

Fill out the Name (Table Group by Type) and select the Type the Group on option. The dialog will automatically fill the Item Expression with the binded data (row["Type"]):

Image RemovedImage Added

The table view is added to the Tbale item in the Outline view and the Layout:

Image Added

Run the report to see how data are now grouped by their issue types:

Image Added

Formatting the Table Group's Header will help to visualize groups better. Select it on the Layout and set the Background Color to Silver in the Properties Editor:

Image Added

Now, thhe groups highlight better amiog the rest of the data:

Image Added

Aggregation

We are going to show the progress (resolved vs unresolved issues) for each Type group. 

Drag&drop the Aggregation item from the Quick Tools on the Palette view to the Table Group Footer Row and Count the Issues Resolved within each Table Group Type:

Image Added


The report displays the amount of resolved issues for each type group:

Image Added

The BIRT designer has created a new binding on the Table for the Aggregation item so it is possible to ise the aggregated data as input for other items like charts:


Image Added

To see the progress, we need a new aggretation item to count the unresolved issues. Pelase, repeat the actions described above in order to crate a similar aggregation with the conditon:

row["Resolved"] == false


Image Added

This is the new report:

Image Added


We will replace the sub-totals by a bar graph. Select both aggregation items from the Outline view and set Dislplay property to No visible:


Image Added


Right click on the Grid's last cell (table) and select Insert Row Above:


Image Added


A new empty Cell has been added between the Pie Chart and the table items:


Image Added


Drag&drop a new Chart ittem and select a Stacked Bar char type:


Image Added


In text tab, check the Use Data from option and select the table (it requires that you provide a name for the Table's in its Properties Editor). Select row["Table Group by Type"] as Category X Serires to see the bars grouped by status (one bar per status). Then select the row["Count Resolved Type"] aggegated data as the Series 1 option for the Value (Y) Series:

Image Added



We need to add another Series 2 for the row["Count Unesolved Type"] aggegated data too: click on the Value (X) Series dropdown and select <New Series...> to create the Series 2:


Image Added

and select the unresolved type aggregated data as input for the Optional Y Series Grouping field:


Image Added


Type Progress by Issue Type as name for the Chart Title in the Format tab:


Image Added

Select Series on the left panel and type Resolved and Unresolved names for the Series 1 and 2 Title respectively. Click on the Series Palette button to open the dialog and remove the current palete by click on the Remove button as many times as requires. Then chose the Green color in the first position (for the Series 1 - Resolved) and the Red color fot the other one. 

Image Added

Close the Palette dialog and check the Show Series Labels for each Value (Y) under the Series (for 1 and 2):


Image Added


Click in the Finish button to close the dialog and run the report:

Image Added