Feature/setup treemap chart for holdings (#3560)

* Setup treemap chart

* Update changelog
This commit is contained in:
Thomas Kaul
2024-07-12 21:02:12 +02:00
committed by GitHub
parent 890c5b986c
commit 4063c62a17
13 changed files with 297 additions and 28 deletions

View File

@@ -0,0 +1 @@
export type HoldingViewMode = 'CHART' | 'TABLE';

View File

@@ -8,6 +8,7 @@ import type { DateRange } from './date-range.type';
import type { Granularity } from './granularity.type';
import type { GroupBy } from './group-by.type';
import type { HoldingType } from './holding-type.type';
import type { HoldingViewMode } from './holding-view-mode.type';
import type { MarketAdvanced } from './market-advanced.type';
import type { MarketDataPreset } from './market-data-preset.type';
import type { MarketState } from './market-state.type';
@@ -30,6 +31,7 @@ export type {
Granularity,
GroupBy,
HoldingType,
HoldingViewMode,
Market,
MarketAdvanced,
MarketDataPreset,