@series
Comma separated list of columns to use for data on the chart
Quick Reference
-- @series: sales, profitValid Values
Full Example
-- @chart: column
-- @title: Series - Basic chart
-- @subtitle: An example of explicitly defining the @series
-- @series: Sales
-- @formats: currency
SELECT
TRUNC(date_closed, 'MONTH') as Month,
sum(amount) as Sales,
sum(Profit) as Profit
FROM sales
GROUP BY TRUNC(date_closed, 'MONTH')
ORDER BY TRUNC(date_closed, 'MONTH') ASC;
MONTH
SALES
PROFIT
Use Cases
Last updated