You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/official-site/sqlpage/migrations/01_documentation.sql
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -665,7 +665,8 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
665
665
('y', 'The value of the point on the vertical axis', 'REAL', FALSE, FALSE),
666
666
('label', 'An alias for parameter "x"', 'REAL', FALSE, TRUE),
667
667
('value', 'An alias for parameter "y"', 'REAL', FALSE, TRUE),
668
-
('series', 'If multiple series are represented and share the same y-axis, this parameter can be used to distinguish between them.', 'TEXT', FALSE, TRUE)
668
+
('series', 'If multiple series are represented and share the same y-axis, this parameter can be used to distinguish between them.', 'TEXT', FALSE, TRUE),
669
+
('link', 'URL opened when user clicks this datapoint or slice.', 'URL', FALSE, TRUE)
669
670
) x;
670
671
INSERT INTO example(component, description, properties) VALUES
671
672
('chart', 'An area chart representing a time series, using the top-level property `time`.
@@ -692,6 +693,23 @@ INSERT INTO example(component, description, properties) VALUES
('chart', 'A TreeMap Chart allows you to display hierarchical data in a nested layout. This is useful for visualizing the proportion of each part to the whole.',
696
714
json('[
697
715
{"component":"chart", "type": "treemap", "title": "Quarterly Results By Region (in k$)", "labels": true },
0 commit comments