How to configure TFS burndown chart to be for effort points not task hours?

一曲冷凌霜 提交于 2019-12-03 13:19:27

问题


My question is really simple, hopefully the answer will be too.

You all know the task burndown in TFS online right ? Here's an example

Obviously, the y-axis is the remaining hours of tasks. I want to change that to be the remaining effort points of Product Backlog Items and Bugs.

Can I do that ? If so, How ?


回答1:


Yes. You have to edit the "Sprint Burndown.rdl" file in your process template (it's in the reports folder). Particularly, you have to change this field:

<Field Name="Remaining_Work">
      <DataField>&lt;?xml version="1.0" encoding="utf-8"?&gt;&lt;Field xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="Measure" UniqueName="[Measures].[Microsoft_VSTS_Scheduling_RemainingWork]" /&gt;</DataField>
      <rd:TypeName>System.Int32</rd:TypeName>
</Field>

To reference the effort point field. This isn't the only change that you'll need to make to that file to get this to work (the MEASURE in the SELECT statement also needs to be altered), but that should at least get you started.



来源:https://stackoverflow.com/questions/18256414/how-to-configure-tfs-burndown-chart-to-be-for-effort-points-not-task-hours

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!