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
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -267,6 +267,7 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
267
267
('ymin', 'The minimal value for the y-axis.', 'NUMBER', TRUE, TRUE),
268
268
('ymax', 'The maximum value for the y-axis.', 'NUMBER', TRUE, TRUE),
269
269
('labels', 'Whether to show the data labels on the chart or not.', 'BOOLEAN', TRUE, TRUE),
270
+
('color', 'The name of a color in which to display the chart. If there are multiple series in the chart, this parameter can be repeated multiple times.', 'TEXT', TRUE, TRUE),
270
271
('stacked', 'Whether to cumulate values from different series.', 'BOOLEAN', TRUE, TRUE),
271
272
('logarithmic', 'Display the y-axis in logarithmic scale..', 'BOOLEAN', TRUE, TRUE),
272
273
-- item level
@@ -277,11 +278,11 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
277
278
('series', 'If multiple series are represented and share the same y-axis, this parameter can be used to distinguish between them.', 'TEXT', FALSE, TRUE)
278
279
) x;
279
280
INSERT INTO example(component, description, properties) VALUES
0 commit comments