@title
Primary name for your chart that is displayed throughout the UI
Quick Reference
-- @title: Sales 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, Channel

Use Cases
Last updated