stable

Clone or download

Read-only

fix: Points outside of burndown graph

Part of request #37921 Burnup/Burndown cache generation fail Some points were outside of graphs because x axis is filtered on opening days but not points. To fix that just add a filter on points Opening days are also now set with a config key `opening_days` *Testing:* Default value of config key is '1,2,3,4,5' (Monday to Friday), so you graph should show only these days without any points outside the graph. Change-Id: I5c6bb4cf29ddbd51d1ade47b0451c5f750521967

Modified Files

Name
M plugins/agiledashboard/include/AgileDashboard/REST/v1/Artifact/BurnupRepresentation.php +2 −1 Go to diff View file
M plugins/agiledashboard/scripts/burnup-chart/src/burnup-chart-drawer.js +1 −1 Go to diff View file
M plugins/agiledashboard/scripts/burnup-chart/src/chart-data-service.js +6 −4 Go to diff View file
M plugins/tracker/include/REST/Artifact/BurndownRepresentation.class.php +2 −1 Go to diff View file
M plugins/tracker/scripts/burndown-chart/src/burndown-chart-drawer.js +1 −1 Go to diff View file
M plugins/tracker/scripts/burndown-chart/src/chart-data-service.js +5 −2 Go to diff View file
M src/common/Config/GetConfigKeys.php +2 −0 Go to diff View file
A src/common/Date/OpeningDaysRetriever.php +52 −0 Go to diff View file