diff --git a/apps/frontend/src/components/ui/charts/Chart.client.vue b/apps/frontend/src/components/ui/charts/Chart.client.vue index 9f0c636d5a..65276d4cdd 100644 --- a/apps/frontend/src/components/ui/charts/Chart.client.vue +++ b/apps/frontend/src/components/ui/charts/Chart.client.vue @@ -169,7 +169,7 @@ const chartOptions = computed(() => { toolbar: { show: false, }, - stacked: props.stacked, + stacked: props.type === "line" ? false : props.stacked, stackType: props.percentStacked ? "100%" : "normal", zoom: { autoScaleYaxis: true, diff --git a/apps/frontend/src/components/ui/charts/ChartDisplay.vue b/apps/frontend/src/components/ui/charts/ChartDisplay.vue index 39c93e98b0..44340410ce 100644 --- a/apps/frontend/src/components/ui/charts/ChartDisplay.vue +++ b/apps/frontend/src/components/ui/charts/ChartDisplay.vue @@ -76,6 +76,10 @@