Newer
Older
<div *ngIf="!isLoading && studentResponseChart">
<select id="class-select" [(ngModel)]="currentClass" (change)="switchClass()" name="classes">
<option [ngValue]="undefined" selected>Select...</option>
<option *ngFor="let rgc of responseGraphClasses" [ngValue]="rgc">{{rgc.classCode}}</option>
</select>
<div [chart]="studentResponseChart"></div>
</div>