XY Chart in Dashboard
September 3, 2008 – 12:54 pmTo create this chart all that is needes is just the X and Y information.
The first column in your SQL should be the X value and the second column should be the Y value. If you are going to have multiple series then the X value is shared axis. The third column represents the second series.
select film_id,count(inventory_id),count(store_id)+3 from inventory
group by film_id

2 Trackback(s)