in widgets/agile-charts/src/app/chart-presentation-model.js [50:66]
key: i18n('Overdue effort'),
values: remainingOutSprint,
color: BurnDownChartColors.overdue
});
}
return data;
},
getCumulativeFlowChartModelData: reportData => {
let hasPredefinedColor = false;
const format = d3.time.format('%Y-%m-%d');
return (reportData.names || []).map((name, i) => {
const colorIndex = reportData.colors[i];
hasPredefinedColor = hasPredefinedColor || colorIndex > 0;
const values = (reportData.sample || []).map(dayData => ({