From 5b50803a25918420340decf0d36a3cc22ca553a5 Mon Sep 17 00:00:00 2001 From: Felix Date: Thu, 15 Aug 2019 14:51:10 +0100 Subject: [PATCH] more debugging --- src/app/dashboard/more-graphs-and-tables.component.html | 1 + src/app/dashboard/more-graphs-and-tables.component.ts | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/src/app/dashboard/more-graphs-and-tables.component.html b/src/app/dashboard/more-graphs-and-tables.component.html index d6e1fed..812b9bd 100644 --- a/src/app/dashboard/more-graphs-and-tables.component.html +++ b/src/app/dashboard/more-graphs-and-tables.component.html @@ -7,6 +7,7 @@
+
diff --git a/src/app/dashboard/more-graphs-and-tables.component.ts b/src/app/dashboard/more-graphs-and-tables.component.ts index 8b4c6ff..01bedc4 100644 --- a/src/app/dashboard/more-graphs-and-tables.component.ts +++ b/src/app/dashboard/more-graphs-and-tables.component.ts @@ -63,11 +63,14 @@ export class MoreStuffComponent implements OnInit { console.log("using range " + start_range + " : " + end_range); result.data.map(item=> { let is_item_in_range = (new Date(item.date) >= new Date(start_range) && new Date(item.date) <= new Date(end_range)); + // there are a lot of `new Date(blah)` but that is what works for some reason. // IT WORKS!!!!!!!!! console.log("item.date : " + new Date(item.date)); + console.log("start_range input box: " + start_range); console.log("start_range : " + new Date(start_range)); + console.log("end_range input box: " + end_range); console.log("end_range : " + new Date(end_range)); console.log("item.date >= start_range: " + (new Date(item.date) >= new Date(start_range))); console.log("item.date <= end_range: " + (new Date(item.date) <= new Date(end_range))); @@ -182,6 +185,11 @@ export class MoreStuffComponent implements OnInit { } bubbleChartUpdate() { + console.log("start_range input box: " + this.bubbleChartBegin); + console.log("start_range : " + new Date(this.bubbleChartBegin)); + console.log("end_range input box: " + this.bubbleChartEnd); + console.log("end_range : " + new Date(this.bubbleChartEnd)); + // this is called when daterange is changed this.loadSupplierBubble(true, (this.bubbleChartBegin), (this.bubbleChartEnd)); console.log("Bubble chart updating...");