26 lines
577 B
JavaScript
26 lines
577 B
JavaScript
class PrrBySymptomTable {
|
|
|
|
#delegate;
|
|
|
|
constructor(tableElement) {
|
|
this.#delegate = new PrrByKeyTable({
|
|
tableElement: tableElement,
|
|
keyColumnName: 'Symptom',
|
|
prrColumnName: 'Proportional Reporting Ratio > 1',
|
|
shallMarkRowIfPrrTooHigh: false
|
|
});
|
|
}
|
|
|
|
initialize() {
|
|
this.#delegate.initialize();
|
|
}
|
|
|
|
display(prrBySymptom) {
|
|
this.#delegate.display(prrBySymptom);
|
|
}
|
|
|
|
getDisplayedTableAsCsv(heading) {
|
|
return this.#delegate.getDisplayedTableAsCsv(heading);
|
|
}
|
|
}
|