mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
25 lines
557 B
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>
|