SYNC: chart - detect data types

This commit is contained in:
Jan Prochazka
2025-07-02 08:53:19 +02:00
committed by Diflow
parent a3fc1dbff0
commit 88918be329
2 changed files with 28 additions and 4 deletions

View File

@@ -72,6 +72,7 @@ export interface ChartDateParsed {
export interface ChartAvailableColumn {
field: string;
dataType: 'none' | 'string' | 'number' | 'date' | 'mixed';
}
export interface ProcessedChart {