SSRS建立複合型圖表sql
1.添加報表數據對應代碼:設計
if object_id('tb') is not null drop table tb; go CREATE TABLE tb(yearid int,[population] int,income int) go insert into tb(yearid,[population],income) select 2010 as id,100000 as population,123456 as income union all select 2011,110000,1346000 union all select 2012,115000,1200000 union all select 2013,120000,1500000
2.先製做直方圖以下所示3d
效果圖blog
設計圖io
3.添加一個新的valuetable
4.改變income的圖表類型class
5.選擇line chartobject
6.結果以下:select