stable

Clone or download

Read-only

Extract legend generators from layout builder

This is part of request #11326 - Refactor graphs' layout builder How to test: - Go to the overview page of a release planning having: - A burndown chart - A burnup chart - A velocity chart --> The 3 charts should be displayed well, without any error. --> Burnup and burndown x-axes labels should be displayed properly according to the granularity of the release duration. Change-Id: I5b72c3bd4dbfdf25dfa635a936c8201ceec49349

Modified Files

Name
M plugins/agiledashboard/www/js/burnup-chart/po/fr.po +3 −0 Go to diff View file
M plugins/agiledashboard/www/js/burnup-chart/po/template.pot +3 −0 Go to diff View file
M plugins/agiledashboard/www/js/burnup-chart/src/burnup-chart-drawer.js +49 −16 Go to diff View file
M plugins/agiledashboard/www/js/burnup-chart/src/burnup-chart.js +18 −18 Go to diff View file
M plugins/tracker/www/scripts/burndown-chart/po/fr.po +3 −0 Go to diff View file
M plugins/tracker/www/scripts/burndown-chart/po/template.pot +3 −0 Go to diff View file
M plugins/tracker/www/scripts/burndown-chart/src/burndown-chart-drawer.js +49 −17 Go to diff View file
M plugins/tracker/www/scripts/burndown-chart/src/burndown-chart.js +15 −15 Go to diff View file
A src/www/scripts/charts-builders/chart-badge-legend-generator.js +63 −0 Go to diff View file
A src/www/scripts/charts-builders/chart-content-legend-generator.js +72 −0 Go to diff View file
M src/www/scripts/charts-builders/chart-layout-builder.js +4 −112 Go to diff View file
M src/www/scripts/charts-builders/chart-layout-service.js +1 −13 Go to diff View file
A src/www/scripts/charts-builders/chart-legend-service.js +37 −0 Go to diff View file
A src/www/scripts/charts-builders/chart-text-legend-generator.js +39 −0 Go to diff View file