(rows: number)
| 290 | ]); |
| 291 | |
| 292 | export const mockDataSimple = (rows: number) => |
| 293 | unpackIntoColumnsAndData([ |
| 294 | { |
| 295 | id: 'aaa', |
| 296 | name: 'Temperature', |
| 297 | type: ColumnType.Numeric, |
| 298 | data: gendata(i => i + 1, rows) |
| 299 | }, |
| 300 | |
| 301 | { |
| 302 | id: 'bbb', |
| 303 | name: 'Climate', |
| 304 | type: ColumnType.Text, |
| 305 | presentation: 'dropdown', |
| 306 | data: gendata( |
| 307 | i => ['Humid', 'Wet', 'Snowy', 'Tropical Beaches'][i % 4], |
| 308 | rows |
| 309 | ) |
| 310 | } |
| 311 | ]); |
| 312 | |
| 313 | export const miniData = unpackIntoColumnsAndData([ |
| 314 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…