@shikshalokam/sl-reports
Version:
Library to integrate questionnaire in SL Projects
25 lines (19 loc) • 525 B
text/typescript
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
({
selector: 'sl-matrix-chart',
templateUrl: './matrix-chart.component.html',
styleUrls: ['./matrix-chart.component.css']
})
export class MatrixChartComponent implements OnInit {
() data;
() questionNumber;
() allEvidence = new EventEmitter();
constructor() {}
ngOnInit() {}
extension(name) {
return name.split(".").pop();
}
openFile(file) {
window.open(file.url, "_blank");
}
}