funky-framadate-front/mocks/old-stuff/pages/poll/poll-graphic/poll-graphic.component.html

25 lines
557 B
HTML

<select
id="selectColorblind"
name="selector"
autofocus="autofocus"
[(ngModel)]="isColorblind"
(change)="toggleColorblind()"
class="input"
>
<option value="true">
{{ 'pollGraphic.choiceColorblind' | translate }}
</option>
<option value="false">
{{ 'pollGraphic.choiceNotColorblind' | translate }}
</option>
</select>
<span class="colorblind">
{{ 'pollGraphic.colorblindText' | translate }}
</span>
<div class="well">
work in progress to link data with poll config
</div>
<div>
<canvas id="graph" width="100%" height="15em"></canvas>
</div>