Add Recharts bar charts to Today dashboard summary.
Extend the Today summary API with treatment mix and workflow task breakdowns, and render permission-aware chart cards on the Today page using Recharts. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
16
frontend/src/components/today/chart-theme.ts
Normal file
16
frontend/src/components/today/chart-theme.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
/** Bar fill colors aligned with the dark dashboard accent palette. */
|
||||
export const TODAY_CHART_COLORS = [
|
||||
'#00bcff',
|
||||
'#e1bc72',
|
||||
'#98d8b5',
|
||||
'#cfb8f7',
|
||||
'#f8c9a6',
|
||||
'#f4b6b6',
|
||||
'#abd8f3',
|
||||
'#cbe9a1',
|
||||
] as const;
|
||||
|
||||
export const TODAY_CHART_AXIS_COLOR = '#8ea3bf';
|
||||
export const TODAY_CHART_GRID_COLOR = 'rgba(41, 69, 106, 0.55)';
|
||||
export const TODAY_CHART_TOOLTIP_BG = '#14253d';
|
||||
export const TODAY_CHART_TOOLTIP_BORDER = '#29456a';
|
||||
Reference in New Issue
Block a user