diff --git a/packages/frontend/editor-ui/src/features/insights/chartjs.utils.ts b/packages/frontend/editor-ui/src/features/insights/chartjs.utils.ts index feed42f377..0fd2c3614d 100644 --- a/packages/frontend/editor-ui/src/features/insights/chartjs.utils.ts +++ b/packages/frontend/editor-ui/src/features/insights/chartjs.utils.ts @@ -29,6 +29,7 @@ export const generateLineChartOptions = ( { responsive: true, maintainAspectRatio: false, + animation: false, plugins: { legend: { display: false, @@ -115,6 +116,7 @@ export const generateBarChartOptions = ( { responsive: true, maintainAspectRatio: false, + animation: false, plugins: { legend: { display: true, @@ -126,6 +128,7 @@ export const generateBarChartOptions = ( boxHeight: 8, borderRadius: 2, useBorderRadius: true, + color: colorTextLight.value, }, }, tooltip: { diff --git a/packages/frontend/editor-ui/src/features/insights/components/InsightsDashboard.vue b/packages/frontend/editor-ui/src/features/insights/components/InsightsDashboard.vue index 4956771c89..78af34d350 100644 --- a/packages/frontend/editor-ui/src/features/insights/components/InsightsDashboard.vue +++ b/packages/frontend/editor-ui/src/features/insights/components/InsightsDashboard.vue @@ -91,56 +91,64 @@ watch( diff --git a/packages/frontend/editor-ui/src/features/insights/components/charts/InsightsChartFailed.vue b/packages/frontend/editor-ui/src/features/insights/components/charts/InsightsChartFailed.vue index a5b26b3ecc..244dee1242 100644 --- a/packages/frontend/editor-ui/src/features/insights/components/charts/InsightsChartFailed.vue +++ b/packages/frontend/editor-ui/src/features/insights/components/charts/InsightsChartFailed.vue @@ -1,14 +1,14 @@