From 3a04f5578725c0b191accac6d1da62f87ea5150b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Midb=C3=B8e?= Date: Thu, 23 Jan 2020 10:11:37 +0100 Subject: [PATCH] Borderwidth set to 2px on both graphs. --- src/ui/PurchaseGraph.vue | 4 ++++ src/ui/WinGraph.vue | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/ui/PurchaseGraph.vue b/src/ui/PurchaseGraph.vue index 2d73a65..353abe7 100644 --- a/src/ui/PurchaseGraph.vue +++ b/src/ui/PurchaseGraph.vue @@ -24,24 +24,28 @@ export default { label: "Blå", borderColor: "#57d2fb", backgroundColor: "#d4f2fe", + borderWidth: 2, data: [] }; let yellow = { label: "Gul", borderColor: "#ffde5d", backgroundColor: "#fff6d6", + borderWidth: 2, data: [] }; let red = { label: "Rød", borderColor: "#ef5878", backgroundColor: "#fbd7de", + borderWidth: 2, data: [] }; let green = { label: "Grønn", borderColor: "#10e783", backgroundColor: "#c8f9df", + borderWidth: 2, data: [] }; diff --git a/src/ui/WinGraph.vue b/src/ui/WinGraph.vue index 125f466..d48818d 100644 --- a/src/ui/WinGraph.vue +++ b/src/ui/WinGraph.vue @@ -23,24 +23,28 @@ export default { label: "Blå", borderColor: "#57d2fb", backgroundColor: "#d4f2fe", + borderWidth: 2, data: [] }; let yellow = { label: "Gul", borderColor: "#ffde5d", backgroundColor: "#fff6d6", + borderWidth: 2, data: [] }; let red = { label: "Rød", borderColor: "#ef5878", backgroundColor: "#fbd7de", + borderWidth: 2, data: [] }; let green = { label: "Grønn", borderColor: "#10e783", backgroundColor: "#c8f9df", + borderWidth: 2, data: [] };