SSRS建立复合型图表

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

相关文章
相关标签/搜索