mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
Documentation update 3.6.0 (#5257)
* documentation update 3.6.0 * documentation update 3.6.0 * update missing doc
This commit is contained in:
@@ -28,30 +28,40 @@ import { RaphaelService } from './raphael/raphael.service';
|
||||
templateUrl: './diagram.component.html'
|
||||
})
|
||||
export class DiagramComponent implements OnChanges {
|
||||
|
||||
/** processDefinitionId. */
|
||||
@Input()
|
||||
processDefinitionId: any;
|
||||
|
||||
/** processInstanceId. */
|
||||
@Input()
|
||||
processInstanceId: any;
|
||||
|
||||
/** metricPercentages. */
|
||||
@Input()
|
||||
metricPercentages: any;
|
||||
|
||||
/** metricColor. */
|
||||
@Input()
|
||||
metricColor: any;
|
||||
|
||||
/** metricType. */
|
||||
@Input()
|
||||
metricType: string = '';
|
||||
|
||||
/** width. */
|
||||
@Input()
|
||||
width: number = 1000;
|
||||
|
||||
/** height. */
|
||||
@Input()
|
||||
height: number = 500;
|
||||
|
||||
/** success. */
|
||||
@Output()
|
||||
success = new EventEmitter();
|
||||
|
||||
/** error. */
|
||||
@Output()
|
||||
error = new EventEmitter();
|
||||
|
||||
|
Reference in New Issue
Block a user