11

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

enter image description here

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 ?

Mohamed Heiba
  • 1,813
  • 4
  • 38
  • 67

1 Answers1

7

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.

Andrew Clear
  • 7,910
  • 5
  • 27
  • 35
  • 1
    can this be done on Team Foundation Service online ? or is it only Team Foundation Server ? – Mohamed Heiba Aug 16 '13 at 03:01
  • 1
    Cannot be done on TF Service. You cannot alter the process template at all there. The alternative in that case would be to use an Excel report. If your question pertains only to TF Service, please remove the extra TFS tags attached to your question. – Andrew Clear Aug 16 '13 at 16:59
  • 1
    @davenewza: Visual Studio Online is the rebranded post-beta version of TF Service, so the answer is still no. – Andrew Clear Jan 28 '14 at 21:11