From 3ed856a84dc8039a2cdbd2549fc6bba388472da5 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 17 Aug 2020 21:17:33 +0200 Subject: [PATCH] Smooth lines --- src/components/charts/DailyChart.vue | 1 + src/components/charts/HourlyChart.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/src/components/charts/DailyChart.vue b/src/components/charts/DailyChart.vue index 9da9901a..4b11356f 100644 --- a/src/components/charts/DailyChart.vue +++ b/src/components/charts/DailyChart.vue @@ -76,6 +76,7 @@ export default class DailyChart extends Vue { type: 'line', name: CHART_ABS_PROFIT, color: 'black', + smooth: true, }, { type: 'bar', diff --git a/src/components/charts/HourlyChart.vue b/src/components/charts/HourlyChart.vue index 5d66f579..47525d4b 100644 --- a/src/components/charts/HourlyChart.vue +++ b/src/components/charts/HourlyChart.vue @@ -95,6 +95,7 @@ export default class HourlyChart extends Vue { type: 'line', name: CHART_PROFIT, color: 'black', + smooth: true, }, { type: 'bar',