Extend investment timeline by month (#1066)

* Extend investment timeline grouped by month

* Update changelog
This commit is contained in:
Thomas Kaul
2022-07-09 21:18:05 +02:00
committed by GitHub
parent 7b5454e7de
commit 60e2aff488
13 changed files with 183 additions and 37 deletions

View File

@@ -43,7 +43,7 @@ export function getTooltipPositionerMapTop(
chart: Chart,
position: TooltipPosition
) {
if (!position) {
if (!position || !chart?.chartArea) {
return false;
}
return {

View File

@@ -0,0 +1 @@
export type GroupBy = 'month';

View File

@@ -2,7 +2,8 @@ import type { AccessWithGranteeUser } from './access-with-grantee-user.type';
import { AccountWithValue } from './account-with-value.type';
import type { DateRange } from './date-range.type';
import type { Granularity } from './granularity.type';
import { MarketState } from './market-state-type';
import { GroupBy } from './group-by.type';
import { MarketState } from './market-state.type';
import { Market } from './market.type';
import type { OrderWithAccount } from './order-with-account.type';
import type { RequestWithUser } from './request-with-user.type';
@@ -13,6 +14,7 @@ export type {
AccountWithValue,
DateRange,
Granularity,
GroupBy,
Market,
MarketState,
OrderWithAccount,