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 chartSELECTChannel,count(*) as Won_Sales FROM Sales as ChannelSalesWHEREStatus='Won'GROUP BY ChannelORDER BY Won_Sales DESC;