diff --git a/src/components/analytics/AnalyticsView.vue b/src/components/analytics/AnalyticsView.vue
index a75fe56..8f0e760 100644
--- a/src/components/analytics/AnalyticsView.vue
+++ b/src/components/analytics/AnalyticsView.vue
@@ -28,6 +28,13 @@ const tableColumns = ref([]);
const chartData = ref(null)
const selectedCategory = ref()
const formatter = ref(new Intl.NumberFormat('ru-RU', {style: 'currency', currency: 'RUB', minimumFractionDigits: 0}))
+const isChartOpen = ref(false)
+
+const closeChart = () => {
+ setTimeout(() => {
+ isChartOpen.value = false;
+ }, 500)
+}
const preparedChartData = computed(() => {
@@ -191,22 +198,26 @@ onMounted(async () => {