diff --git a/web-app/src/pages/home/AnalyticsModule.vue b/web-app/src/pages/home/AnalyticsModule.vue index e91a121..d3cf23b 100644 --- a/web-app/src/pages/home/AnalyticsModule.vue +++ b/web-app/src/pages/home/AnalyticsModule.vue @@ -19,6 +19,17 @@ const balanceTimeSeriesData = ref() const currency = ref() const timeFrame = ref({}) +interface AnalyticsChartType { + id: string + name: string +} + +const AnalyticsChartTypes: AnalyticsChartType[] = [ + { id: 'balance-time-series', name: 'Account Balances' }, +] + +const selectedChart = ref(AnalyticsChartTypes[0]) + const availableCurrencies = computed(() => { const currencies: Currency[] = [] for (const acc of accounts.value) { @@ -64,9 +75,19 @@ onMounted(async () => { })