src/app/pages/voting/voting-graph/voting-graph.component.ts
selector | framadate-voting-graph |
styleUrls | ./voting-graph.component.scss |
templateUrl | ./voting-graph.component.html |
Properties |
Methods |
constructor(config: ConfigService)
|
||||||
Parameters :
|
ngOnInit |
ngOnInit()
|
Returns :
void
|
checkValidity |
checkValidity()
|
Inherited from
BaseComponent
|
Defined in
BaseComponent:21
|
Returns :
boolean
|
displayErrorMessage |
displayErrorMessage()
|
Inherited from
BaseComponent
|
Defined in
BaseComponent:27
|
Returns :
boolean
|
ngOnInit |
ngOnInit()
|
Inherited from
BaseComponent
|
Defined in
BaseComponent:17
|
Returns :
void
|
Public config |
Type : ConfigService
|
Public config |
Type : ConfigService
|
Inherited from
BaseComponent
|
Defined in
BaseComponent:14
|
import { Component, OnInit } from '@angular/core';
import {BaseComponent} from "../../base-page/base.component";
import {ConfigService} from "../../../services/config.service";
@Component({
selector: 'framadate-voting-graph',
templateUrl: './voting-graph.component.html',
styleUrls: ['./voting-graph.component.scss']
})
export class VotingGraphComponent extends BaseComponent implements OnInit {
constructor(public config: ConfigService) {
super(config);
}
ngOnInit() {
}
}
<h1>Graphique</h1>
<framadate-poll-graphic></framadate-poll-graphic>
./voting-graph.component.scss