For the complete documentation index, see llms.txt. This page is also available as Markdown.

Radar

Radar Chart Examples

Radar charts are useful to compare the range of one or more categories

Basic Radar Chart

-- @chart: radar
-- @title: Radar Chart
-- @category: Channel
-- @series: Won_Sales
-- @subtitle: An basic example of a radar chart
SELECT 
Channel,
count(*) as Won_Sales 
FROM Sales as ChannelSales
WHERE Status = 'Won'
GROUP BY Channel
ORDER BY Won_Sales DESC;

referral

243.0

event

112.0

search

66.0

coldcall

37.0

pr_ad

21.0

Last updated