Reputation: 1156
Can I update the TFS chart retroactively?
Assume it is Wednesday, and I want to update TFS Work Item
(Eg. the remaining hours) for Monday and Tuesday and the TFS Scrum Burndown Chart to reflect this.
Is there a way how to do that? Either from within Visual Studio, TFS Web Access or at least programmatically through TFS API?
Upvotes: 2
Views: 995
Reputation: 1147
No, this is not possible and if you achieve that, it is not officially supported. I have not find any way to modify it using VS, Web, Excel, Project nor API.
It is possible to change date of server where TFS is running and then manipulate Work Items. I was able to increase the curve (useful when preparing demo data).
For sure, it is possible to change data directly in SQL.
It is not possible to influence Burn-down chart retroactively using TFS API.
Event if it is possible to modify field "System.CreatedDate" of work item, it is not possible to change "Microsoft.VSTS.Scheduling.StartDate" and "System.AuthorizedDate" which seems to be used for calculation of graph (work item field reference).
More information you can find in Tarun Arora's post and Richard Hundhausen's blog.
Upvotes: 1