Skip to content
Snippets Groups Projects
Commit 46c9692b authored by Luiz Vasconcellos's avatar Luiz Vasconcellos
Browse files

SCRUM#29: Fix UTC offset on graphs

parent cd4558d6
No related branches found
No related tags found
1 merge request!10SCRUM#29: Fix UTC offset on graphs
......@@ -60,6 +60,8 @@ export class GraphsPageComponent implements AfterViewInit {
this.graphStartDate = new Date(this.series.start_date);
this.graphStartDate.setDate(this.graphStartDate.getDate() + 1);
let interval: number = 24 * 3600 * 1000; // Graph tick interval in milliseconds
this.graphOptions.chart = { type: 'column' };
if (this.selectedInterval == "Mensal" || this.selectedInterval == "Anual")
......
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