LauraSilva's picture
Fork: G1 + Inspire RH56F1 hand support, fix v3.0 gate + float64 dtype filter
28393e2 verified
Raw
History Blame Contribute Delete
502 Bytes
/**
* Chart and data visualization type definitions
*/
// Chart data point structure
export interface ChartDataPoint {
timestamp: number;
[key: string]: number | Record<string, number>; // Hierarchical data
}
// Chart data group
export type ChartDataGroup = ChartDataPoint[];
// Series column definition
export interface SeriesColumn {
key: string;
value: string[]; // Series names
}
// Group statistics for scale calculation
export interface GroupStats {
min: number;
max: number;
}