link graphic in nav

This commit is contained in:
Baptiste Lemoine 2019-11-19 14:53:53 +01:00
parent e81389eae1
commit c0f800ff91
4 changed files with 58 additions and 54 deletions

View File

@ -28,7 +28,7 @@ export const Routes =
{path: 'step/visibility', component: VisibilityComponent},
{path: 'step/resume', component: ResumeComponent},
{path: 'step/end', component: EndConfirmationComponent},
{ path: "graphic/:poll", component: PollGraphicComponent },
{path: 'graphic/:poll', component: PollGraphicComponent},
{path: 'votechoice', component: VoteChoiceComponent},
]
;

View File

@ -3,12 +3,12 @@
name="selector"
autofocus="autofocus"
[(ngModel)]="isColorblind"
(change)="setColorblind()"
(change)="toggleColorblind()"
>
<option value="colorblind">
<option value="true">
{{ "pollGraphic.choiceColorblind" | translate }}
</option>
<option value="notColorblind">
<option value="false">
{{ "pollGraphic.choiceNotColorblind" | translate }}
</option>
</select>
@ -17,4 +17,3 @@
<canvas id="graph" width="100" height="50"></canvas>
</div>

View File

@ -7,7 +7,7 @@ import { Chart } from "chart.js";
styleUrls: ["./poll-graphic.component.scss"]
})
export class PollGraphicComponent implements OnInit {
isColorblind: boolean;
isColorblind: boolean = false;
lineChart: Chart;
pollData: any;
yesList: number[] = [];
@ -15,7 +15,9 @@ export class PollGraphicComponent implements OnInit {
noList: number[] = [];
nbPoll: number = 0;
dateList: string[] = [];
constructor() {}
constructor() {
}
ngOnInit() {
var toto = {
@ -126,7 +128,7 @@ export class PollGraphicComponent implements OnInit {
});
}
setColorblind() {
toggleColorblind() {
this.isColorblind = !this.isColorblind;
}

View File

@ -23,6 +23,9 @@
<a [routerLink]="'/step/kind'" i18n>
Page démo
</a>
<a [routerLink]="'/graphic/toto'" i18n>
Graphique
</a>
<a [routerLink]="'/home'" i18n>
Accueil
</a>