Skip to content
Snippets Groups Projects
student-response-chart.component.html 443 B
Newer Older
<div *ngIf="!isLoading && studentResponseChart">
    <label for="class-select">Choose a Year:</label>
    <select id="class-select" [(ngModel)]="currentClass" (change)="switchClass()" name="classes">
      <option [ngValue]="undefined" selected>Select...</option>
      <option *ngFor="let ompClass of responseGraphClasses" [ngValue]="ompClass">{{ompClass.classCode}}</option>
    </select>
  <div [chart]="studentResponseChart"></div>
</div>