Add new analytic component "Estimated vs actual time per column"
This commit is contained in:
committed by
GitHub
parent
6cadf82a63
commit
a267aa368b
@@ -130,6 +130,22 @@ class AnalyticController extends BaseController
|
||||
$this->commonAggregateMetrics('analytic/burndown', 'score', t('Burndown chart'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Estimated vs actual time per column
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
public function estimatedVsActualByColumn()
|
||||
{
|
||||
$project = $this->getProject();
|
||||
|
||||
$this->response->html($this->helper->layout->analytic('analytic/estimated_actual_column', array(
|
||||
'project' => $project,
|
||||
'metrics' => $this->estimatedActualColumnAnalytic->build($project['id']),
|
||||
'title' => t('Estimated vs actual time per column'),
|
||||
)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Common method for CFD and Burdown chart
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user