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

前端 未结 1 1828
悲&欢浪女
悲&欢浪女 2021-02-05 23:01

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

1条回答
  •  长情又很酷
    2021-02-05 23:16

    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:

    
          <?xml version="1.0" encoding="utf-8"?><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]" />
          System.Int32
    
    

    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.

    0 讨论(0)
提交回复
热议问题