File tree Expand file tree Collapse file tree 1 file changed +0
-29
lines changed
Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Original file line number Diff line number Diff line change 1717
1818import type { BaseSchema , SchemaNode } from './base' ;
1919
20- /**
21- * Dashboard Component Schema
22- * (Report / BI View)
23- */
24- export interface DashboardSchema extends BaseSchema {
25- type : 'dashboard' ;
26- /**
27- * Layout Grid Configuration (e.g. 12 column grid)
28- */
29- columns ?: number ;
30- /**
31- * Widget gap
32- */
33- gap ?: number ;
34- /**
35- * Dashboard Widgets
36- */
37- widgets : Array < {
38- /** Unique Widget ID */
39- id : string ;
40- /** Widget Title */
41- title ?: string ;
42- /** Widget Component (Chart, Statistic, List, etc) */
43- component : SchemaNode ;
44- /** Grid Position: x, y, w, h */
45- layout ?: { x : number ; y : number ; w : number ; h : number } ;
46- } > ;
47- }
48-
4920/**
5021 * Kanban column
5122 */
You can’t perform that action at this time.
0 commit comments