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