Reputation: 2814
My team want to measure the Points Commitment Reliability metric, witch is as simple as the points delivered in sprint vs the points planned to be delivered.
In fact, we have two queries showing it but separately, and we want to know if is posible to have a percentage visualization of the rate of those metrics in Visual Studio Team Services?
Upvotes: 0
Views: 1072
Reputation: 33698
You can do it through Power BI.
Then you can filter by Iteration path and work item state.
On the other hand, you can do it programming. Connect using Power Query and Visual Studio Team Services (VSTS) functions.
For example, call REST API by calling VSTS.AccountContents("REST API URL")
Upvotes: 1
Reputation: 51073
Unfortunately, there is not any official widget or chart to handle your requirement.
Since you already created two queries to get related data info. Then as a workaroundm you could export the query to excel, create the chart or table in excel based on your needs, calculate and display the completion percentage.
Just create table/chart in Excel manually to make a division between two queries.
Below articles for your reference:
Upvotes: 1