From 3e42b632907340a9b1ad4e99e701f8011bc3eaba Mon Sep 17 00:00:00 2001 From: Julian Hinxlage Date: Tue, 28 May 2019 15:22:39 +0200 Subject: [PATCH] ~set color for chart labels to black --- src/main/webapp/index.jsp | 4 ++-- src/main/webapp/js/cache.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 0f73f27..1d25b3d 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -6,7 +6,7 @@ -
+
@@ -16,7 +16,7 @@
- +
diff --git a/src/main/webapp/js/cache.js b/src/main/webapp/js/cache.js index e712e2b..705181b 100644 --- a/src/main/webapp/js/cache.js +++ b/src/main/webapp/js/cache.js @@ -1,3 +1,5 @@ +Chart.defaults.global.defaultFontColor = "black"; + $(document).ready(function () { let dataset = $('#dataset'); request('files').then(results => { @@ -33,7 +35,6 @@ function updateCache() { } } - function updateAll(uuid) { updateWeekOverviewChart(uuid); updateShoppingTimesChart(uuid);