alfresco-ng2-components/lib/insights/analytics-process/components/analytics-report-heat-map.component.html
Eugenio Romano a52bb5600a
New packages org (#2639)
New packages org
2017-11-16 14:12:52 +00:00

10 lines
612 B
HTML

<h4>Process Heat map</h4>
<div *ngIf="hasMetric()">
<form [formGroup]="metricForm" novalidate>
<analytics-dropdown-widget [field]="field" [group]="metricForm.controls.metricGroup" [controllerName]="'metric'"
(fieldChanged)="onMetricChanges(field)" [showDefaultOption]="false"></analytics-dropdown-widget>
</form>
<adf-diagram *ngIf="currentMetric" [processDefinitionId]="report.processDefinitionId" [metricPercentages]="currentMetric" [metricColor]="currentMetricColors" [metricType]="metricType"></adf-diagram>
</div>
<div *ngIf="!hasMetric()">No metric found</div>