- Allow users to choose the date granularity of the x axis and the group by of the y axis on a bar chart - Display those options conditionally - Store timezones in graphs: each graph has its own timezone, defaults to the user timezone. There will be a picker in the v2 to choose the timezone. For now the timezone is not used by the backend, but it will be used in filters and in group by queries. - Store first day of the week https://github.com/user-attachments/assets/66a5d156-dd93-4ebe-8c8f-d172f93e25be
7 lines
91 B
TypeScript
7 lines
91 B
TypeScript
export enum CalendarStartDay {
|
|
SYSTEM = 7,
|
|
SUNDAY = 0,
|
|
MONDAY = 1,
|
|
SATURDAY = 6,
|
|
}
|