@subtitle
A short description about the visualization displayed under the title throughout the UI
Quick Reference
-- @subtitle: Sales over time grouped by monthValid Types
Full Example
-- @title: Auto Heatmap
-- @subtitle: An example auto generated heatmap comparing two categories
SELECT
Owner,
Channel,
count(*) as Sales
FROM Sales
WHERE Sales.Status = 'Won'
GROUP BY Owner, ChannelUse Cases

Last updated