stublue

SSRS创建复合型图表

SSRS创建复合型图表

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.先制作直方图如下所示

                             效果图

 

                             设计图

 

3.添加一个新的value

 

 

4.改变income的图表类型

 

5.选择line chart

 

6.结果如下:

 

 

 

分类:

技术点:

相关文章:

  • 2021-08-06
  • 2022-01-16
  • 2021-05-02
  • 2021-11-28
  • 2021-07-18
  • 2021-07-29
  • 2022-12-23
猜你喜欢
  • 2021-12-25
  • 2022-01-06
  • 2022-12-23
  • 2021-11-04
  • 2021-06-06
  • 2021-06-15
  • 2021-12-29
相关资源
相似解决方案