Skip to content
Snippets Groups Projects
Commit 8c6da08c authored by Luiz Fernando A. Vasconcellos's avatar Luiz Fernando A. Vasconcellos
Browse files

Minor adjustments for presentation

parent 93353437
No related branches found
No related tags found
1 merge request!4Issue/6
......@@ -80,7 +80,7 @@ ngAfterViewInit() {
this.chart = chart(this.graphOne.nativeElement, options);
const options: Highcharts.Options = {
const options_two: Highcharts.Options = {
chart: {
type: 'pie'
},
......@@ -106,7 +106,6 @@ ngAfterViewInit() {
},
series: [{
name: 'Percentual de Pacientes',
colorByPoint: true,
data: [{
name: 'Geral',
y: 68
......@@ -117,9 +116,9 @@ ngAfterViewInit() {
}]
};
this.chart = chart(this.graphTwo.nativeElement, options);
this.chart = chart(this.graphTwo.nativeElement, options_two);
const options: Highcharts.Options = {
const options_three: Highcharts.Options = {
chart: {
type: 'area'
},
......@@ -174,7 +173,7 @@ ngAfterViewInit() {
}]
};
this.chart = chart(this.graphThr.nativeElement, options);
this.chart = chart(this.graphThr.nativeElement, options_three);
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment