99c7e02499
* Add support for embed parameter that skips the shell layout * Add support for cards with remote content * Adapt js to support lazy-loaded fragments * Add example * Reformat & Fix lint errors * Update query param name and add docs * Add example * squash migrations --------- Co-authored-by: lovasoa <pere.jobs@gmail.com>
31 lines
735 B
SQL
31 lines
735 B
SQL
select
|
|
'chart' as component,
|
|
'Quarterly Revenue' as title,
|
|
'area' as type,
|
|
'indigo' as color,
|
|
5 as marker,
|
|
TRUE as time;
|
|
select
|
|
'2022-01-01T00:00:00Z' as x,
|
|
15 as y;
|
|
select
|
|
'2022-04-01T00:00:00Z' as x,
|
|
46 as y;
|
|
select
|
|
'2022-07-01T00:00:00Z' as x,
|
|
23 as y;
|
|
select
|
|
'2022-10-01T00:00:00Z' as x,
|
|
70 as y;
|
|
select
|
|
'2023-01-01T00:00:00Z' as x,
|
|
35 as y;
|
|
select
|
|
'2023-04-01T00:00:00Z' as x,
|
|
106 as y;
|
|
select
|
|
'2023-07-01T00:00:00Z' as x,
|
|
53 as y;
|
|
|
|
|