Scatter chart in Dashboard
September 6, 2008 – 2:03 pmThis is similar to bubble chart
Here is the SQL to generate Scatter plot
select film_id x
,count(inventory_id) y1 ,count(store_id)/10 z1
, film_id y2,count(inventory_id)/5 z2
from inventory
group by film_id

2 Trackback(s)