saving progress, lots of charting decisions made

This commit is contained in:
2024-06-06 13:53:51 -04:00
parent bf74aeeba3
commit e88499cbaf
24 changed files with 612 additions and 87 deletions

View File

@@ -0,0 +1,7 @@
import { ChartType } from 'chart.js';
import { ChartAxis } from './chart-type';
export interface ChartConfig {
type: ChartType;
axis: ChartAxis[];
}