医院综合统计表

【医院综合统计表】该报表展示了如何使用图表控件做一个医院监控大屏。

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>ActiveReportsJS sample</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap" rel="stylesheet" /> <link rel="stylesheet" href="https://cdn.materialdesignicons.com/2.8.94/css/materialdesignicons.min.css" /> <script src="/activereportsjs/demos/arjs/dist/ar-js-core.js"></script> <script src="/activereportsjs/demos/arjs/dist/ar-js-viewer.js"></script> <script src="/activereportsjs/demos/arjs/dist/ar-js-designer.js"></script> <script src="/activereportsjs/demos/arjs/dist/ar-js-pdf.js"></script> <script src="/activereportsjs/demos/arjs/dist/ar-js-html.js"></script> <script src="/activereportsjs/demos/arjs/dist/ar-js-xlsx.js"></script> <script src="/activereportsjs/demos/arjs-localization/dist/ar-js-locales.js"></script> <script src="/activereportsjs/demos/arjs-localization/dist/designer/zh-locale.js"></script> <script src="$DEMOROOT$/lib/purejs/license.js"></script> <link rel="stylesheet" type="text/css" href="/activereportsjs/demos/arjs/styles/ar-js-ui.css" /> <link rel="stylesheet" type="text/css" href="/activereportsjs/demos/arjs/styles/ar-js-viewer.css" /> <link rel="stylesheet" type="text/css" href="/activereportsjs/demos/arjs/styles/ar-js-designer.css" /> <style> #root { height: 100vh; } #viewer-host, #designer-host { height: 100%; } #designer-host { display: none; } </style> </head> <body onload="load()" style="margin: 0"> <div id="root"> <div id="viewer-host"></div> <div id="designer-host"></div> </div> <script> var currentReport = undefined; var viewerHost = document.getElementById("viewer-host"); var designerHost = document.getElementById("designer-host"); function load() { var viewer = new ActiveReports.Viewer("#viewer-host", { language: "zh", }); var designer = new GC.ActiveReports.ReportDesigner.Designer( "#designer-host", { language: "zh" } ); designer.setActionHandlers({ onRender(report) { currentReport = report.definition; viewer.open(currentReport); viewerHost.style.display = "block"; designerHost.style.display = "none"; // return Promise.resolve(); }, }); var designButton = { key: "$openDesigner", text: "编辑报表", iconCssClass: "mdi mdi-pencil", enabled: true, action: function (item) { designer.setReport({ definition: currentReport, displayName: "医院综合统计表", }); viewerHost.style.display = "none"; designerHost.style.display = "block"; }, }; viewer.toolbar.addItem(designButton); viewer.toolbar.updateLayout({ default: [ "$openDesigner", "$split", "$navigation", "$split", "$refresh", "$split", "$history", "$split", "$zoom", "$fullscreen", "$split", "$print", "$split", "$singlepagemode", "$continuousmode", "$galleymode", ], }); fetch("yiyuanzonghetongjibiao.rdlx-json") .then(function (data) { return data.json(); }) .then(function (report) { currentReport = report; viewer.open(report); }); } </script> </body> </html>
{"Name":"医院综合统计表.rdlx","Width":"36.487cm","ConsumeContainerWhitespace":true,"DocumentMap":{"Source":"All"},"Layers":[{"Name":"default"}],"CustomProperties":[{"Name":"数据集4_Data_Set_Fields","Value":"{\"ID\":{\"aggregate\":\"Sum\",\"dataType\":\"Float\"},\"订单编号\":{\"aggregate\":\"Count\",\"dataType\":\"String\"},\"产品名称\":{\"aggregate\":\"Count\",\"dataType\":\"String\"},\"数量\":{\"aggregate\":\"Sum\",\"dataType\":\"Float\"},\"单价\":{\"aggregate\":\"Sum\",\"dataType\":\"Float\"},\"客户地区\":{\"aggregate\":\"Count\",\"dataType\":\"String\"},\"医疗机构\":{\"aggregate\":\"Count\",\"dataType\":\"String\"},\"医院级别\":{\"aggregate\":\"Count\",\"dataType\":\"String\"},\"销售日期\":{\"aggregate\":\"Sum\",\"dataType\":\"Float\"},\"医院等级\":{\"aggregate\":\"Count\",\"dataType\":\"String\"},\"销售区间\":{\"aggregate\":\"Count\",\"dataType\":\"String\"}}"},{"Name":"数据集5_Data_Set_Fields","Value":"{\"销售年度\":{\"aggregate\":\"Sum\",\"dataType\":\"Float\"}}"},{"Name":"DisplayType","Value":"Page"},{"Name":"SizeType","Value":"Default"},{"Name":"PaperOrientation","Value":"Portrait"}],"Page":{"PageWidth":"36.6cm","PageHeight":"22.5cm","RightMargin":"0in","LeftMargin":"0in","TopMargin":"0in","BottomMargin":"0in","Columns":1,"ColumnSpacing":"0cm"},"DataSources":[{"Name":"数据源1","DataSourceReference":"..\\Data\\ArsDemo.rdsx","ConnectionProperties":{"DataProvider":"JSONEMBED","ConnectString":"jsondata=[\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 186,\\n \"到诊人数\": 91,\\n \"住院人数\": 45,\\n \"复诊人数\": 10,\\n \"收入\": 2.5,\\n \"创建时间\": \"2017/11/27 7:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 955,\\n \"到诊人数\": 201,\\n \"住院人数\": 13,\\n \"复诊人数\": 32,\\n \"收入\": 2.4,\\n \"创建时间\": \"2017/11/27 7:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 466,\\n \"到诊人数\": 255,\\n \"住院人数\": 91,\\n \"复诊人数\": 65,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/27 7:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 100,\\n \"到诊人数\": 77,\\n \"住院人数\": 29,\\n \"复诊人数\": 18,\\n \"收入\": 4.2,\\n \"创建时间\": \"2017/11/27 7:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 605,\\n \"到诊人数\": 373,\\n \"住院人数\": 24,\\n \"复诊人数\": 123,\\n \"收入\": 3.2,\\n \"创建时间\": \"2017/11/27 7:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 946,\\n \"到诊人数\": 685,\\n \"住院人数\": 111,\\n \"复诊人数\": 128,\\n \"收入\": 4.6,\\n \"创建时间\": \"2017/11/27 7:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 733,\\n \"到诊人数\": 565,\\n \"住院人数\": 133,\\n \"复诊人数\": 256,\\n \"收入\": 1.32,\\n \"创建时间\": \"2017/11/27 7:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 518,\\n \"到诊人数\": 516,\\n \"住院人数\": 138,\\n \"复诊人数\": 632,\\n \"收入\": 2.36,\\n \"创建时间\": \"2017/11/27 7:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 446,\\n \"到诊人数\": 354,\\n \"住院人数\": 11,\\n \"复诊人数\": 265,\\n \"收入\": 1.26,\\n \"创建时间\": \"2017/11/27 17:52\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 697,\\n \"到诊人数\": 455,\\n \"住院人数\": 190,\\n \"复诊人数\": 328,\\n \"收入\": 3.69,\\n \"创建时间\": \"2017/11/27 15:30\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 297,\\n \"到诊人数\": 283,\\n \"住院人数\": 91,\\n \"复诊人数\": 126,\\n \"收入\": 4.69,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 356,\\n \"到诊人数\": 262,\\n \"住院人数\": 29,\\n \"复诊人数\": 102,\\n \"收入\": 2.6,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 299,\\n \"到诊人数\": 190,\\n \"住院人数\": 68,\\n \"复诊人数\": 60,\\n \"收入\": 3.69,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 439,\\n \"到诊人数\": 422,\\n \"住院人数\": 50,\\n \"复诊人数\": 226,\\n \"收入\": 2.3,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 445,\\n \"到诊人数\": 479,\\n \"住院人数\": 105,\\n \"复诊人数\": 68,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 782,\\n \"到诊人数\": 496,\\n \"住院人数\": 78,\\n \"复诊人数\": 369,\\n \"收入\": 1.3,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 971,\\n \"到诊人数\": 498,\\n \"住院人数\": 86,\\n \"复诊人数\": 326,\\n \"收入\": 6.3,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 451,\\n \"到诊人数\": 529,\\n \"住院人数\": 110,\\n \"复诊人数\": 268,\\n \"收入\": 2.1,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 773,\\n \"到诊人数\": 261,\\n \"住院人数\": 131,\\n \"复诊人数\": 32,\\n \"收入\": 6.4,\\n \"创建时间\": \"2017/11/26 20:31\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 604,\\n \"到诊人数\": 369,\\n \"住院人数\": 80,\\n \"复诊人数\": 65,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/26 8:00\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 128,\\n \"到诊人数\": 130,\\n \"住院人数\": 2,\\n \"复诊人数\": 65,\\n \"收入\": 1.6,\\n \"创建时间\": \"2017/11/25 9:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 239,\\n \"到诊人数\": 154,\\n \"住院人数\": 9,\\n \"复诊人数\": 56,\\n \"收入\": 6.1,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 916,\\n \"到诊人数\": 780,\\n \"住院人数\": 109,\\n \"复诊人数\": 26,\\n \"收入\": 7.3,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 521,\\n \"到诊人数\": 297,\\n \"住院人数\": 188,\\n \"复诊人数\": 69,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 593,\\n \"到诊人数\": 416,\\n \"住院人数\": 73,\\n \"复诊人数\": 46,\\n \"收入\": 4.6,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 404,\\n \"到诊人数\": 212,\\n \"住院人数\": 75,\\n \"复诊人数\": 126,\\n \"收入\": 2.3,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 371,\\n \"到诊人数\": 260,\\n \"住院人数\": 74,\\n \"复诊人数\": 56,\\n \"收入\": 5.1,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 917,\\n \"到诊人数\": 536,\\n \"住院人数\": 28,\\n \"复诊人数\": 362,\\n \"收入\": 6.1,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 112,\\n \"到诊人数\": 95,\\n \"住院人数\": 50,\\n \"复诊人数\": 65,\\n \"收入\": 4.3,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 942,\\n \"到诊人数\": 680,\\n \"住院人数\": 23,\\n \"复诊人数\": 298,\\n \"收入\": 2.15,\\n \"创建时间\": \"2017/11/25 8:00\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 218,\\n \"到诊人数\": 74,\\n \"住院人数\": 13,\\n \"复诊人数\": 4,\\n \"收入\": 3.21,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 821,\\n \"到诊人数\": 247,\\n \"住院人数\": 28,\\n \"复诊人数\": 165,\\n \"收入\": 7.3,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 370,\\n \"到诊人数\": 226,\\n \"住院人数\": 137,\\n \"复诊人数\": 126,\\n \"收入\": 2.65,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 421,\\n \"到诊人数\": 181,\\n \"住院人数\": 46,\\n \"复诊人数\": 36,\\n \"收入\": 3.63,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 235,\\n \"到诊人数\": 132,\\n \"住院人数\": 41,\\n \"复诊人数\": 36,\\n \"收入\": 2.5,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 836,\\n \"到诊人数\": 618,\\n \"住院人数\": 151,\\n \"复诊人数\": 35,\\n \"收入\": 2.4,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 797,\\n \"到诊人数\": 668,\\n \"住院人数\": 185,\\n \"复诊人数\": 64,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 374,\\n \"到诊人数\": 199,\\n \"住院人数\": 56,\\n \"复诊人数\": 99,\\n \"收入\": 4.2,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 350,\\n \"到诊人数\": 109,\\n \"住院人数\": 89,\\n \"复诊人数\": 65,\\n \"收入\": 3.2,\\n \"创建时间\": \"2017/11/22 9:00\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 911,\\n \"到诊人数\": 364,\\n \"住院人数\": 66,\\n \"复诊人数\": 36,\\n \"收入\": 4.6,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 233,\\n \"到诊人数\": 145,\\n \"住院人数\": 53,\\n \"复诊人数\": 36,\\n \"收入\": 1.32,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 542,\\n \"到诊人数\": 253,\\n \"住院人数\": 100,\\n \"复诊人数\": 36,\\n \"收入\": 2.36,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 784,\\n \"到诊人数\": 449,\\n \"住院人数\": 38,\\n \"复诊人数\": 25,\\n \"收入\": 1.26,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 449,\\n \"到诊人数\": 258,\\n \"住院人数\": 160,\\n \"复诊人数\": 16,\\n \"收入\": 3.69,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 336,\\n \"到诊人数\": 286,\\n \"住院人数\": 83,\\n \"复诊人数\": 36,\\n \"收入\": 6.5,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 183,\\n \"到诊人数\": 56,\\n \"住院人数\": 8,\\n \"复诊人数\": 16,\\n \"收入\": 2.6,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 333,\\n \"到诊人数\": 129,\\n \"住院人数\": 30,\\n \"复诊人数\": 36,\\n \"收入\": 3.69,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 663,\\n \"到诊人数\": 168,\\n \"住院人数\": 165,\\n \"复诊人数\": 74,\\n \"收入\": 2.3,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 193,\\n \"到诊人数\": 148,\\n \"住院人数\": 89,\\n \"复诊人数\": 74,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 153,\\n \"到诊人数\": 98,\\n \"住院人数\": 46,\\n \"复诊人数\": 58,\\n \"收入\": 1.3,\\n \"创建时间\": \"2017/11/24 11:00\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 337,\\n \"到诊人数\": 315,\\n \"住院人数\": 139,\\n \"复诊人数\": 56,\\n \"收入\": 6.3,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 883,\\n \"到诊人数\": 549,\\n \"住院人数\": 82,\\n \"复诊人数\": 47,\\n \"收入\": 2.1,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 752,\\n \"到诊人数\": 454,\\n \"住院人数\": 90,\\n \"复诊人数\": 63,\\n \"收入\": 6.4,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 572,\\n \"到诊人数\": 371,\\n \"住院人数\": 76,\\n \"复诊人数\": 56,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 580,\\n \"到诊人数\": 432,\\n \"住院人数\": 195,\\n \"复诊人数\": 79,\\n \"收入\": 1.6,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 755,\\n \"到诊人数\": 265,\\n \"住院人数\": 101,\\n \"复诊人数\": 65,\\n \"收入\": 6.1,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 459,\\n \"到诊人数\": 285,\\n \"住院人数\": 158,\\n \"复诊人数\": 43,\\n \"收入\": 7.3,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 317,\\n \"到诊人数\": 198,\\n \"住院人数\": 30,\\n \"复诊人数\": 67,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 749,\\n \"到诊人数\": 623,\\n \"住院人数\": 70,\\n \"复诊人数\": 63,\\n \"收入\": 1.32,\\n \"创建时间\": \"2017/11/23 12:00\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 863,\\n \"到诊人数\": 280,\\n \"住院人数\": 97,\\n \"复诊人数\": 253,\\n \"收入\": 2.36,\\n \"创建时间\": \"2017/11/23 11:13\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 186,\\n \"到诊人数\": 91,\\n \"住院人数\": 45,\\n \"复诊人数\": 10,\\n \"收入\": 2.5,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 955,\\n \"到诊人数\": 201,\\n \"住院人数\": 13,\\n \"复诊人数\": 32,\\n \"收入\": 2.4,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 466,\\n \"到诊人数\": 255,\\n \"住院人数\": 91,\\n \"复诊人数\": 65,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 100,\\n \"到诊人数\": 77,\\n \"住院人数\": 29,\\n \"复诊人数\": 18,\\n \"收入\": 4.2,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 605,\\n \"到诊人数\": 373,\\n \"住院人数\": 24,\\n \"复诊人数\": 123,\\n \"收入\": 3.2,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 946,\\n \"到诊人数\": 685,\\n \"住院人数\": 111,\\n \"复诊人数\": 128,\\n \"收入\": 4.6,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 733,\\n \"到诊人数\": 565,\\n \"住院人数\": 133,\\n \"复诊人数\": 256,\\n \"收入\": 1.32,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 518,\\n \"到诊人数\": 516,\\n \"住院人数\": 138,\\n \"复诊人数\": 632,\\n \"收入\": 2.36,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 446,\\n \"到诊人数\": 354,\\n \"住院人数\": 11,\\n \"复诊人数\": 265,\\n \"收入\": 1.26,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 697,\\n \"到诊人数\": 455,\\n \"住院人数\": 190,\\n \"复诊人数\": 328,\\n \"收入\": 3.69,\\n \"创建时间\": \"2017/11/22 7:00\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 186,\\n \"到诊人数\": 91,\\n \"住院人数\": 45,\\n \"复诊人数\": 10,\\n \"收入\": 2.5,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 955,\\n \"到诊人数\": 201,\\n \"住院人数\": 13,\\n \"复诊人数\": 32,\\n \"收入\": 2.4,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 466,\\n \"到诊人数\": 255,\\n \"住院人数\": 91,\\n \"复诊人数\": 65,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 100,\\n \"到诊人数\": 77,\\n \"住院人数\": 29,\\n \"复诊人数\": 18,\\n \"收入\": 4.2,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 605,\\n \"到诊人数\": 373,\\n \"住院人数\": 24,\\n \"复诊人数\": 123,\\n \"收入\": 3.2,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 946,\\n \"到诊人数\": 685,\\n \"住院人数\": 111,\\n \"复诊人数\": 128,\\n \"收入\": 4.6,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 733,\\n \"到诊人数\": 565,\\n \"住院人数\": 133,\\n \"复诊人数\": 256,\\n \"收入\": 1.32,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 518,\\n \"到诊人数\": 516,\\n \"住院人数\": 138,\\n \"复诊人数\": 632,\\n \"收入\": 2.36,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 446,\\n \"到诊人数\": 354,\\n \"住院人数\": 11,\\n \"复诊人数\": 265,\\n \"收入\": 1.26,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 697,\\n \"到诊人数\": 455,\\n \"住院人数\": 190,\\n \"复诊人数\": 328,\\n \"收入\": 3.69,\\n \"创建时间\": \"2017/11/21 7:00\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 186,\\n \"到诊人数\": 91,\\n \"住院人数\": 45,\\n \"复诊人数\": 10,\\n \"收入\": 2.5,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 955,\\n \"到诊人数\": 201,\\n \"住院人数\": 13,\\n \"复诊人数\": 32,\\n \"收入\": 2.4,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 466,\\n \"到诊人数\": 255,\\n \"住院人数\": 91,\\n \"复诊人数\": 65,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 100,\\n \"到诊人数\": 77,\\n \"住院人数\": 29,\\n \"复诊人数\": 18,\\n \"收入\": 4.2,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 605,\\n \"到诊人数\": 373,\\n \"住院人数\": 24,\\n \"复诊人数\": 123,\\n \"收入\": 3.2,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 946,\\n \"到诊人数\": 685,\\n \"住院人数\": 111,\\n \"复诊人数\": 128,\\n \"收入\": 4.6,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 733,\\n \"到诊人数\": 565,\\n \"住院人数\": 133,\\n \"复诊人数\": 256,\\n \"收入\": 1.32,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 518,\\n \"到诊人数\": 516,\\n \"住院人数\": 138,\\n \"复诊人数\": 632,\\n \"收入\": 2.36,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"中医骨伤科\",\\n \"预约人数\": 11,\\n \"到诊人数\": 354,\\n \"住院人数\": 11,\\n \"复诊人数\": 265,\\n \"收入\": 1.26,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"中医内科\",\\n \"预约人数\": 697,\\n \"到诊人数\": 455,\\n \"住院人数\": 190,\\n \"复诊人数\": 328,\\n \"收入\": 3.69,\\n \"创建时间\": \"2017/11/20 7:00\"\\n },\\n {\\n \"科室\": \"肛肠科\",\\n \"预约人数\": 186,\\n \"到诊人数\": 91,\\n \"住院人数\": 45,\\n \"复诊人数\": 10,\\n \"收入\": 2.5,\\n \"创建时间\": \"2017/11/19 7:00\"\\n },\\n {\\n \"科室\": \"口腔科\",\\n \"预约人数\": 955,\\n \"到诊人数\": 201,\\n \"住院人数\": 13,\\n \"复诊人数\": 32,\\n \"收入\": 2.4,\\n \"创建时间\": \"2017/11/19 7:00\"\\n },\\n {\\n \"科室\": \"五官科\",\\n \"预约人数\": 466,\\n \"到诊人数\": 255,\\n \"住院人数\": 91,\\n \"复诊人数\": 65,\\n \"收入\": 3.6,\\n \"创建时间\": \"2017/11/19 7:00\"\\n },\\n {\\n \"科室\": \"西医内科\",\\n \"预约人数\": 100,\\n \"到诊人数\": 77,\\n \"住院人数\": 29,\\n \"复诊人数\": 18,\\n \"收入\": 4.2,\\n \"创建时间\": \"2017/11/19 7:00\"\\n },\\n {\\n \"科室\": \"西医外科\",\\n \"预约人数\": 605,\\n \"到诊人数\": 373,\\n \"住院人数\": 24,\\n \"复诊人数\": 123,\\n \"收入\": 3.2,\\n \"创建时间\": \"2017/11/19 7:00\"\\n },\\n {\\n \"科室\": \"针剂医疗科\",\\n \"预约人数\": 946,\\n \"到诊人数\": 685,\\n \"住院人数\": 111,\\n \"复诊人数\": 128,\\n \"收入\": 4.6,\\n \"创建时间\": \"2017/11/19 7:00\"\\n },\\n {\\n \"科室\": \"中医儿科\",\\n \"预约人数\": 733,\\n \"到诊人数\": 565,\\n \"住院人数\": 133,\\n \"复诊人数\": 256,\\n \"收入\": 1.32,\\n \"创建时间\": \"2017/11/19 7:00\"\\n },\\n {\\n \"科室\": \"中医妇科\",\\n \"预约人数\": 518,\\n \"到诊人数\": 516,\\n \"住院人数\": 138,\\n \"复诊人数\": 632,\\n \"收入\": 2.36,\\n \"创建时间\": \"2017/11/19 7:00\"\\n }\\n]"}},{"Name":"DataSource","ConnectionProperties":{"DataProvider":"JSONEMBED","ConnectString":"jsondata=[\\r\\n {\\r\\n \"项目名称\": \"西药\",\\r\\n \"收入\": 33919,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"化验\",\\r\\n \"收入\": 20753,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"检查\",\\r\\n \"收入\": 40137,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"床位费\",\\r\\n \"收入\": 25867,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"治疗\",\\r\\n \"收入\": 35571,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"材料\",\\r\\n \"收入\": 23138,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"西药\",\\r\\n \"收入\": 45326,\\r\\n \"创建时间\": \"2017/11/26 8:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"化验\",\\r\\n \"收入\": 33996,\\r\\n \"创建时间\": \"2017/11/26 8:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"检查\",\\r\\n \"收入\": 20028,\\r\\n \"创建时间\": \"2017/11/26 8:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"床位费\",\\r\\n \"收入\": 32799,\\r\\n \"创建时间\": \"2017/11/26 8:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"治疗\",\\r\\n \"收入\": 27466,\\r\\n \"创建时间\": \"2017/11/26 8:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"材料\",\\r\\n \"收入\": 25855,\\r\\n \"创建时间\": \"2017/11/26 8:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"西药\",\\r\\n \"收入\": 52531,\\r\\n \"创建时间\": \"2017/11/25 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"化验\",\\r\\n \"收入\": 49106,\\r\\n \"创建时间\": \"2017/11/25 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"检查\",\\r\\n \"收入\": 42158,\\r\\n \"创建时间\": \"2017/11/25 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"床位费\",\\r\\n \"收入\": 50334,\\r\\n \"创建时间\": \"2017/11/25 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"治疗\",\\r\\n \"收入\": 43827,\\r\\n \"创建时间\": \"2017/11/25 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"材料\",\\r\\n \"收入\": 20085,\\r\\n \"创建时间\": \"2017/11/25 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"西药\",\\r\\n \"收入\": 41243,\\r\\n \"创建时间\": \"2017/11/24 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"化验\",\\r\\n \"收入\": 28569,\\r\\n \"创建时间\": \"2017/11/24 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"检查\",\\r\\n \"收入\": 32195,\\r\\n \"创建时间\": \"2017/11/24 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"床位费\",\\r\\n \"收入\": 49031,\\r\\n \"创建时间\": \"2017/11/24 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"治疗\",\\r\\n \"收入\": 27108,\\r\\n \"创建时间\": \"2017/11/24 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"材料\",\\r\\n \"收入\": 48771,\\r\\n \"创建时间\": \"2017/11/24 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"西药\",\\r\\n \"收入\": 40309,\\r\\n \"创建时间\": \"2017/11/23 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"化验\",\\r\\n \"收入\": 41567,\\r\\n \"创建时间\": \"2017/11/23 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"检查\",\\r\\n \"收入\": 50644,\\r\\n \"创建时间\": \"2017/11/23 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"床位费\",\\r\\n \"收入\": 48779,\\r\\n \"创建时间\": \"2017/11/23 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"治疗\",\\r\\n \"收入\": 32270,\\r\\n \"创建时间\": \"2017/11/23 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"材料\",\\r\\n \"收入\": 35263,\\r\\n \"创建时间\": \"2017/11/23 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"西药\",\\r\\n \"收入\": 29299,\\r\\n \"创建时间\": \"2017/11/22 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"化验\",\\r\\n \"收入\": 38319,\\r\\n \"创建时间\": \"2017/11/22 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"检查\",\\r\\n \"收入\": 20966,\\r\\n \"创建时间\": \"2017/11/22 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"床位费\",\\r\\n \"收入\": 45484,\\r\\n \"创建时间\": \"2017/11/22 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"治疗\",\\r\\n \"收入\": 33413,\\r\\n \"创建时间\": \"2017/11/22 9:00\"\\r\\n },\\r\\n {\\r\\n \"项目名称\": \"材料\",\\r\\n \"收入\": 30508,\\r\\n \"创建时间\": \"2017/11/22 9:00\"\\r\\n }\\r\\n]"}},{"Name":"DataSource1","ConnectionProperties":{"DataProvider":"JSONEMBED","ConnectString":"jsondata=[\\r\\n {\\r\\n \"类型\": \"住院\",\\r\\n \"收入\": 12,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"住院\",\\r\\n \"收入\": 11,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"住院\",\\r\\n \"收入\": 23,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"住院\",\\r\\n \"收入\": 11,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"住院\",\\r\\n \"收入\": 22,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"住院\",\\r\\n \"收入\": 30,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"初诊\",\\r\\n \"收入\": 41,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"初诊\",\\r\\n \"收入\": 63,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"初诊\",\\r\\n \"收入\": 13,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"初诊\",\\r\\n \"收入\": 21,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"初诊\",\\r\\n \"收入\": 23,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"初诊\",\\r\\n \"收入\": 29,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"医保\",\\r\\n \"收入\": 35,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"医保\",\\r\\n \"收入\": 63,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"医保\",\\r\\n \"收入\": 16,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"医保\",\\r\\n \"收入\": 29,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"医保\",\\r\\n \"收入\": 23,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"医保\",\\r\\n \"收入\": 23,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"复诊\",\\r\\n \"收入\": 9,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"复诊\",\\r\\n \"收入\": 8,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"复诊\",\\r\\n \"收入\": 11,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"复诊\",\\r\\n \"收入\": 12,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"复诊\",\\r\\n \"收入\": 9,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"复诊\",\\r\\n \"收入\": 29,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"自费\",\\r\\n \"收入\": 9,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"自费\",\\r\\n \"收入\": 9,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"自费\",\\r\\n \"收入\": 8,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"自费\",\\r\\n \"收入\": 27,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"自费\",\\r\\n \"收入\": 11,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"自费\",\\r\\n \"收入\": 9,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"门诊\",\\r\\n \"收入\": 40,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"门诊\",\\r\\n \"收入\": 46,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"门诊\",\\r\\n \"收入\": 17,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"门诊\",\\r\\n \"收入\": 25,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"门诊\",\\r\\n \"收入\": 21,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"类型\": \"门诊\",\\r\\n \"收入\": 8,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n }\\r\\n]"}},{"Name":"DataSource2","ConnectionProperties":{"DataProvider":"JSONEMBED","ConnectString":"jsondata=[\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 152,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 791,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 493,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 257,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 197,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 142,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 240,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 168,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 149,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 78,\\r\\n \"创建时间\": \"2017/11/27 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 338,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 167,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 279,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 481,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 161,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 103,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 44,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 198,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 69,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 122,\\r\\n \"创建时间\": \"2017/11/26 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 78,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 128,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 52,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 125,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 192,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 172,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 78,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 62,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 194,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 157,\\r\\n \"创建时间\": \"2017/11/25 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 198,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 193,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 57,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 45,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 114,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 102,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 116,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 148,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 183,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 120,\\r\\n \"创建时间\": \"2017/11/24 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 45,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 105,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 65,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 39,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 188,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 176,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 53,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 55,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 112,\\r\\n \"创建时间\": \"2017/11/23 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 169,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 45,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 105,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 65,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 39,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 188,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 176,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 531,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 552,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 112,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 169,\\r\\n \"创建时间\": \"2017/11/22 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 453,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 105,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 653,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 339,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 188,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 176,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 534,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 355,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 112,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 169,\\r\\n \"创建时间\": \"2017/11/21 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 415,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 105,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 65,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 39,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 188,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 176,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 513,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 555,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 112,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 169,\\r\\n \"创建时间\": \"2017/11/20 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"冠心病\",\\r\\n \"患病人数\": 45,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"高血压\",\\r\\n \"患病人数\": 105,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肾炎\",\\r\\n \"患病人数\": 65,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺炎\",\\r\\n \"患病人数\": 39,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"流感\",\\r\\n \"患病人数\": 188,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"肺结核\",\\r\\n \"患病人数\": 176,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"糖尿病\",\\r\\n \"患病人数\": 53,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"胆结石\",\\r\\n \"患病人数\": 55,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"尿结石\",\\r\\n \"患病人数\": 112,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n },\\r\\n {\\r\\n \"疾病类型\": \"子宫肌瘤\",\\r\\n \"患病人数\": 169,\\r\\n \"创建时间\": \"2017/11/19 7:00\"\\r\\n }\\r\\n]"}},{"Name":"DataSource3","ConnectionProperties":{"DataProvider":"JSONEMBED","ConnectString":"jsondata=[\\n {\\n \"材料费\": 10038,\\n \"化验费\": 22472,\\n \"检查费\": 42218,\\n \"床位费\": 12732,\\n \"手术费\": 27368,\\n \"药费\": 23644,\\n \"创建时间\": \"6月1号\"\\n },\\n {\\n \"材料费\": 10038,\\n \"化验费\": 22472,\\n \"检查费\": 42218,\\n \"床位费\": 12732,\\n \"手术费\": 27368,\\n \"药费\": 23644,\\n \"创建时间\": \"6月2号\"\\n },\\n {\\n \"材料费\": 10038,\\n \"化验费\": 22472,\\n \"检查费\": 42218,\\n \"床位费\": 12732,\\n \"手术费\": 27368,\\n \"药费\": 23644,\\n \"创建时间\": \"6月3号\"\\n },\\n {\\n \"材料费\": 10038,\\n \"化验费\": 22472,\\n \"检查费\": 42218,\\n \"床位费\": 12732,\\n \"手术费\": 27368,\\n \"药费\": 23644,\\n \"创建时间\": \"6月4号\"\\n },\\n {\\n \"材料费\": 10038,\\n \"化验费\": 22472,\\n \"检查费\": 42218,\\n \"床位费\": 12732,\\n \"手术费\": 27368,\\n \"药费\": 23644,\\n \"创建时间\": \"6月5号\"\\n },\\n {\\n \"材料费\": 16105,\\n \"化验费\": 24674,\\n \"检查费\": 30068,\\n \"床位费\": 21473,\\n \"手术费\": 15710,\\n \"药费\": 27455,\\n \"创建时间\": \"6月6号\"\\n },\\n {\\n \"材料费\": 16105,\\n \"化验费\": 24674,\\n \"检查费\": 30068,\\n \"床位费\": 21473,\\n \"手术费\": 15710,\\n \"药费\": 27455,\\n \"创建时间\": \"6月7号\"\\n },\\n {\\n \"材料费\": 16105,\\n \"化验费\": 24674,\\n \"检查费\": 30068,\\n \"床位费\": 21473,\\n \"手术费\": 15710,\\n \"药费\": 27455,\\n \"创建时间\": \"6月8号\"\\n },\\n {\\n \"材料费\": 23499,\\n \"化验费\": 31100,\\n \"检查费\": 28740,\\n \"床位费\": 12667,\\n \"手术费\": 32950,\\n \"药费\": 29394,\\n \"创建时间\": \"6月9号\"\\n },\\n {\\n \"材料费\": 23499,\\n \"化验费\": 31100,\\n \"检查费\": 28740,\\n \"床位费\": 12667,\\n \"手术费\": 32950,\\n \"药费\": 29394,\\n \"创建时间\": \"6月10号\"\\n },\\n {\\n \"材料费\": 23499,\\n \"化验费\": 31100,\\n \"检查费\": 28740,\\n \"床位费\": 12667,\\n \"手术费\": 32950,\\n \"药费\": 29394,\\n \"创建时间\": \"6月11号\"\\n },\\n {\\n \"材料费\": 24477,\\n \"化验费\": 22459,\\n \"检查费\": 17419,\\n \"床位费\": 40831,\\n \"手术费\": 17967,\\n \"药费\": 40125,\\n \"创建时间\": \"6月12号\"\\n },\\n {\\n \"材料费\": 24477,\\n \"化验费\": 22459,\\n \"检查费\": 17419,\\n \"床位费\": 40831,\\n \"手术费\": 17967,\\n \"药费\": 40125,\\n \"创建时间\": \"6月13号\"\\n },\\n {\\n \"材料费\": 27016,\\n \"化验费\": 21031,\\n \"检查费\": 30342,\\n \"床位费\": 18835,\\n \"手术费\": 11497,\\n \"药费\": 41843,\\n \"创建时间\": \"6月14号\"\\n },\\n {\\n \"材料费\": 27016,\\n \"化验费\": 21031,\\n \"检查费\": 30342,\\n \"床位费\": 18835,\\n \"手术费\": 11497,\\n \"药费\": 41843,\\n \"创建时间\": \"6月15号\"\\n },\\n {\\n \"材料费\": 27016,\\n \"化验费\": 21031,\\n \"检查费\": 30342,\\n \"床位费\": 18835,\\n \"手术费\": 11497,\\n \"药费\": 41843,\\n \"创建时间\": \"6月16号\"\\n }\\n]"}}],"Body":{"Height":"22cm","ReportItems":[{"Type":"dvchart","Name":"图表3","ZIndex":2,"DataSetName":"数据集2","Style":{"FontFamily":"微软雅黑","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","BackgroundColor":"White"},"Bar":{"BottomWidth":0.7,"TopWidth":0.7,"Width":1},"Header":{"Style":{"PaddingTop":"4pt","PaddingBottom":"2pt"},"TextStyle":{"FontFamily":"微软雅黑","FontSize":"16pt","Color":"#2f2f2f"},"VAlign":"Top"},"Footer":{"Style":{"PaddingTop":"2pt","PaddingBottom":"4pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}},"Legend":{"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"Wrapping":true},"PlotArea":{"Axes":[{"LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingTop":"3pt","PaddingBottom":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"Position":"None","TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},{"AxisType":"Y","Format":"p0","LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"3pt","PaddingRight":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGrid":true,"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"Position":"None","Scale":"Percentage","TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}}],"Legends":[{"Position":"Bottom","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}]},"Plots":[{"PlotName":"绘图区域 1","Encodings":{"Values":[{"Field":{"FieldType":"Simple","Value":["=Sum(Fields!收入.Value)"]}}],"Category":{"Field":{"FieldType":"Simple"}},"Details":[{"Field":{"FieldType":"Simple","Value":["=Fields!项目名称.Value"]},"Group":"Stack"}],"Color":{"Field":{"FieldType":"Simple","Value":["=Fields!项目名称.Value"]},"Aggregate":"List"},"Shape":{"Field":{"FieldType":"Simple"}},"Size":{"Field":{"FieldType":"Simple"}}},"Config":{"AxisMode":"Radial","InnerRadius":0.7,"LineStyle":{"Color":"Black","Style":"None","Width":"1pt"},"Radial":true,"StartAngle":90,"Text":{"TextPosition":"Center","Template":"{PercentageCategory:p0}","Style":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}},"PlotChartType":"Pie","PlotChartSubtype":"Stacked"}],"Left":"12.4cm","Top":"3.4cm","Width":"10.6cm","Height":"11cm"},{"Type":"dvchart","Name":"图表4","ZIndex":3,"DataSetName":"数据集3","Style":{"FontFamily":"微软雅黑","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","BackgroundColor":"White","BackgroundGradientEndColor":"White"},"Bar":{"BottomWidth":0.7,"TopWidth":0.7,"Width":0.7},"Header":{"Style":{"PaddingTop":"4pt","PaddingBottom":"2pt"},"TextStyle":{"FontFamily":"微软雅黑","FontSize":"16pt","Color":"#2f2f2f"},"Title":"类型收入分布"},"Footer":{"Style":{"PaddingTop":"2pt","PaddingBottom":"4pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}},"Legend":{"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"Wrapping":true},"PlotArea":{"Axes":[{"LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingTop":"3pt","PaddingBottom":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},{"AxisType":"Y","LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"3pt","PaddingRight":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGrid":true,"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}}],"Legends":[{"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}]},"Plots":[{"PlotName":"绘图区域 1","Encodings":{"Values":[{"Field":{"FieldType":"Simple","Value":["=Sum(Fields!收入.Value)"]}}],"Category":{"Field":{"FieldType":"Simple","Value":["=Fields!类型.Value"]}},"Color":{"Field":{"FieldType":"Simple"},"Aggregate":"List"},"Shape":{"Field":{"FieldType":"Simple"}},"Size":{"Field":{"FieldType":"Simple"}}},"Config":{"LineStyle":{"Color":"Black","Style":"None","Width":"1pt"},"Text":{"Style":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}},"PlotChartType":"Column","PlotChartSubtype":"Clustered"}],"Left":"0.2cm","Top":"7cm","Width":"12cm","Height":"7.4cm"},{"Type":"dvchart","Name":"图表5","ZIndex":4,"DataSetName":"数据集2","Style":{"FontFamily":"微软雅黑","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","BackgroundColor":"White"},"Bar":{"BottomWidth":0.7,"TopWidth":0.7,"Width":0.7},"Header":{"Style":{"PaddingTop":"4pt","PaddingBottom":"2pt"},"TextStyle":{"FontFamily":"微软雅黑","FontSize":"16pt","Color":"#2f2f2f"},"Title":"项目收入分布"},"Footer":{"Style":{"PaddingTop":"2pt","PaddingBottom":"4pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}},"Legend":{"Hidden":true,"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"Wrapping":true},"PlotArea":{"Axes":[{"LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingTop":"3pt","PaddingBottom":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},{"AxisType":"Y","LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"3pt","PaddingRight":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGrid":true,"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}}],"Legends":[{"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}]},"Plots":[{"PlotName":"绘图区域 1","Encodings":{"Values":[{"Field":{"FieldType":"Simple","Value":["=Sum(Fields!收入.Value)"]}}],"Category":{"Field":{"FieldType":"Simple","Value":["=Fields!项目名称.Value"]}},"Color":{"Field":{"FieldType":"Simple","Value":["VALUESNAME"]},"Aggregate":"List"},"Shape":{"Field":{"FieldType":"Simple"}},"Size":{"Field":{"FieldType":"Simple"}}},"Config":{"LineStyle":{"Color":"Black","Style":"None","Width":"1pt"},"Text":{"Style":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}},"PlotChartType":"Column","PlotChartSubtype":"Clustered"}],"Left":"0.2cm","Top":"1cm","Width":"12cm","Height":"5.6cm"},{"Type":"dvchart","Name":"Chart2","ZIndex":8,"DataSetName":"数据集1","Style":{"FontSize":"8pt","BackgroundColor":"White"},"Header":{"Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"4pt","PaddingBottom":"2pt"},"TextStyle":{"FontFamily":"微软雅黑","FontSize":"16pt","Color":"#2f2f2f"},"Title":"住院人数 VS 复诊人数"},"Footer":{"Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"4pt"},"TextStyle":{"FontSize":"8pt"}},"Legend":{"Position":"Bottom","Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontSize":"8pt"},"Wrapping":true},"PlotArea":{"Axes":[{"LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"LineStyle":{"Border":{"Style":"Solid"}},"MajorTickStyle":{"Border":{"Color":"LightGray"}},"MinorTickSize":"1pt","MinorTickStyle":{"Border":{"Color":"#666666"}},"Plots":["Plot1"],"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontSize":"8pt","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},{"AxisType":"Y","LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"LineStyle":{"Border":{"Style":"Solid"}},"MajorGrid":true,"MajorGridStyle":{"Border":{"Color":"Gainsboro","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"White"}},"MinorTickSize":"1pt","MinorTickStyle":{"Border":{"Color":"WhiteSmoke"}},"Plots":["Plot1"],"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontSize":"8pt","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}}],"Legends":[{"Orientation":"Vertical","Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"},"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontSize":"8pt"}},{"Orientation":"Vertical","Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"},"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontSize":"8pt"},"LegendType":"Shape"},{"Orientation":"Vertical","Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"},"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontSize":"8pt"},"LegendType":"Size"}],"Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},"Plots":[{"PlotType":"Line","PlotName":"Plot1","Encodings":{"Values":[{"Field":{"FieldType":"Simple","Value":["=Fields!住院人数.Value"]}},{"Field":{"FieldType":"Simple","Value":["=Fields!复诊人数.Value"]}}],"Category":{"Field":{"FieldType":"Simple","Value":["=Fields!科室.Value"]}},"Color":{"Field":{"FieldType":"Simple","Value":["VALUESNAME"]},"Aggregate":"List"},"Shape":{"Field":{"FieldType":"Simple"},"Aggregate":"List"},"Size":{"Field":{"FieldType":"Simple"}}},"Config":{"LineStyle":{"Color":"Black","Style":"Solid","Width":"1pt"},"Symbols":true,"Text":{"Style":{"FontSize":"8pt"}}},"PlotChartType":"Line"}],"Left":"0.2cm","Top":"14.8cm","Width":"17cm","Height":"7.2cm"},{"Type":"textbox","Name":"TextBox1","ZIndex":9,"DataElementName":"TextBox1","CanGrow":true,"KeepTogether":true,"Value":"收入占比","Style":{"FontFamily":"微软雅黑","FontSize":"16pt","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"#2f2f2f","TextAlign":"Center"},"Left":"16.2cm","Top":"8cm","Width":"3.4cm","Height":"1cm"},{"Type":"rectangle","Name":"Container1","ZIndex":12,"KeepTogether":true,"Style":{"BackgroundColor":"White"},"ReportItems":[{"Type":"dvchart","Name":"图表1","DataSetName":"数据集1","Style":{"FontFamily":"微软雅黑","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"},"Bar":{"BottomWidth":0.7,"TopWidth":0.7,"Width":0.7},"Header":{"Style":{"PaddingTop":"4pt","PaddingBottom":"2pt"},"TextStyle":{"FontFamily":"微软雅黑","FontSize":"16pt","Color":"#2f2f2f"},"Title":"预约 VS 到诊人数"},"Footer":{"Style":{"PaddingTop":"2pt","PaddingBottom":"4pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}},"Palette":"Blue2","Legend":{"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"Wrapping":true},"PlotArea":{"Axes":[{"LabelAngle":30,"LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingTop":"3pt","PaddingBottom":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},{"AxisType":"Y","LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"3pt","PaddingRight":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGrid":true,"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}}],"Legends":[{"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}]},"Plots":[{"PlotName":"绘图区域 1","Encodings":{"Values":[{"Field":{"FieldType":"Simple","Value":["=sum(Fields!预约人数.Value)",""]}},{"Field":{"FieldType":"Simple","Value":["=sum(Fields!到诊人数.Value)",""]}}],"Category":{"Field":{"FieldType":"Simple","Value":["=Fields!科室.Value"]}},"Color":{"Field":{"FieldType":"Simple"},"Aggregate":"List"},"Shape":{"Field":{"FieldType":"Simple"},"Aggregate":"List"},"Size":{"Field":{"FieldType":"Simple"}}},"Config":{"LineStyle":{"Color":"Black","Style":"None","Width":"1pt"},"Text":{"Style":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}},"Tooltip":{"Template":"{valueField.name}{valueField.value}"}},"PlotChartType":"Column","PlotChartSubtype":"Clustered"}],"Left":"0.287cm","Top":"0.0007in","Width":"13cm","Height":"1.9685in"},{"Type":"dvchart","Name":"Chart1","ZIndex":1,"DataSetName":"门诊疾病","Style":{"FontSize":"8pt"},"Header":{"Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"4pt","PaddingBottom":"2pt"},"TextStyle":{"FontFamily":"微软雅黑","FontSize":"16pt","Color":"#2f2f2f"},"Title":"住院疾病人数排行"},"Footer":{"Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"4pt"},"TextStyle":{"FontSize":"8pt"}},"Legend":{"Orientation":"Vertical","Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"},"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontSize":"8pt"},"Wrapping":true},"PlotArea":{"Axes":[{"LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"LineStyle":{"Border":{"Style":"Solid"}},"Plots":["Plot1"],"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontSize":"8pt","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},{"AxisType":"Y","LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"LineStyle":{"Border":{"Style":"Solid"}},"MajorGrid":true,"MajorGridStyle":{"Border":{"Color":"Gainsboro","Style":"Solid"}},"MajorTickStyle":{"Border":{"Color":"WhiteSmoke"}},"Plots":["Plot1"],"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontFamily":"微软雅黑","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}}],"Legends":[{"Orientation":"Vertical","Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"},"TextStyle":{"FontSize":"8pt"},"TitleStyle":{"FontSize":"8pt"}}],"Style":{"PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},"Plots":[{"PlotName":"Plot1","Encodings":{"Values":[{"Field":{"FieldType":"Simple","Value":["=Sum(Fields!患病人数.Value)",""]}}],"Category":{"Field":{"FieldType":"Simple","Value":["=Fields!疾病类型.Value"]}},"Color":{"Field":{"FieldType":"Simple"},"Aggregate":"List"},"Shape":{"Field":{"FieldType":"Simple"},"Aggregate":"List"},"Size":{"Field":{"FieldType":"Simple"}}},"Config":{"LineStyle":{"Color":"Black","Style":"None","Width":"1pt"},"Text":{"Style":{"FontSize":"8pt"}}},"PlotChartType":"Column"}],"Left":"0.105834cm","Top":"5.199999cm","Width":"13cm","Height":"5.8cm"}],"Left":"23.2cm","Top":"3.4cm","Width":"13.287cm","Height":"11.2cm"},{"Type":"table","Name":"Table1","ZIndex":13,"DataSetName":"数据集1","DetailDataElementOutput":"Output","TableColumns":[{"Width":"5.891cm"},{"Width":"0.111cm"},{"Width":"5.891cm"},{"Width":"0.111cm"},{"Width":"5.891cm"},{"Width":"0.111cm"},{"Width":"5.891cm"}],"Header":{"TableRows":[{"Height":"0.999cm","TableCells":[{"Item":{"Type":"textbox","Name":"TextBox2","DataElementName":"TextBox2","CanGrow":true,"KeepTogether":true,"Value":"就诊人数","Style":{"FontFamily":"新宋体","FontSize":"16pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"5.891cm","Height":"0.999cm"}},{"Item":{"Type":"textbox","Name":"TextBox3","DataElementName":"TextBox3","CanGrow":true,"KeepTogether":true,"Style":{"FontFamily":"新宋体","FontSize":"16pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"0.111cm","Height":"0.999cm"}},{"Item":{"Type":"textbox","Name":"TextBox4","DataElementName":"TextBox4","CanGrow":true,"KeepTogether":true,"Value":"住院人数","Style":{"FontFamily":"新宋体","FontSize":"16pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"5.891cm","Height":"0.999cm"}},{"Item":{"Type":"textbox","Name":"TextBox5","DataElementName":"TextBox5","CanGrow":true,"KeepTogether":true,"Style":{"FontFamily":"新宋体","FontSize":"16pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"0.111cm","Height":"0.999cm"}},{"Item":{"Type":"textbox","Name":"TextBox7","DataElementName":"TextBox7","CanGrow":true,"KeepTogether":true,"Value":"总收入(百万)","Style":{"FontFamily":"新宋体","FontSize":"16pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"5.891cm","Height":"0.999cm"}},{"Item":{"Type":"textbox","Name":"TextBox12","DataElementName":"TextBox12","CanGrow":true,"KeepTogether":true,"Style":{"FontFamily":"新宋体","FontSize":"16pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"0.111cm","Height":"0.999cm"}},{"Item":{"Type":"textbox","Name":"TextBox14","DataElementName":"TextBox14","CanGrow":true,"KeepTogether":true,"Value":"住院收入(百万)","Style":{"FontFamily":"新宋体","FontSize":"16pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"5.891cm","Height":"0.999cm"}}]}]},"Footer":{"TableRows":[{"Height":"1.001cm","TableCells":[{"Item":{"Type":"textbox","Name":"TextBox8","DataElementName":"到诊人数","CanGrow":true,"KeepTogether":true,"Value":"=Sum(Fields!到诊人数.Value)","Style":{"FontFamily":"新宋体","FontSize":"22pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"5.891cm","Height":"1.001cm"}},{"Item":{"Type":"textbox","Name":"TextBox9","DataElementName":"TextBox9","CanGrow":true,"KeepTogether":true,"Style":{"FontFamily":"新宋体","FontSize":"22pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"0.111cm","Height":"1.001cm"}},{"Item":{"Type":"textbox","Name":"TextBox10","DataElementName":"住院人数","CanGrow":true,"KeepTogether":true,"Value":"=Sum(Fields!住院人数.Value)","Style":{"FontFamily":"新宋体","FontSize":"22pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"5.891cm","Height":"1.001cm"}},{"Item":{"Type":"textbox","Name":"TextBox6","DataElementName":"TextBox6","CanGrow":true,"KeepTogether":true,"Style":{"FontFamily":"新宋体","FontSize":"22pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"0.111cm","Height":"1.001cm"}},{"Item":{"Type":"textbox","Name":"TextBox11","DataElementName":"收入","CanGrow":true,"KeepTogether":true,"Value":"408","Style":{"FontFamily":"新宋体","FontSize":"22pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"5.891cm","Height":"1.001cm"}},{"Item":{"Type":"textbox","Name":"TextBox13","DataElementName":"TextBox13","CanGrow":true,"KeepTogether":true,"Style":{"FontFamily":"新宋体","FontSize":"22pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"0.111cm","Height":"1.001cm"}},{"Item":{"Type":"textbox","Name":"TextBox15","DataElementName":"收入","CanGrow":true,"KeepTogether":true,"Value":"=Sum(Fields!收入.Value)","Style":{"FontFamily":"新宋体","FontSize":"22pt","FontWeight":"Bold","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt","Color":"White","TextAlign":"Center","VerticalAlign":"Middle","BackgroundColor":"#1781e0"},"Width":"5.891cm","Height":"1.001cm"}}]}]},"Left":"12.4cm","Top":"1cm","Width":"23.897cm","Height":"2cm"},{"Type":"dvchart","Name":"图表2","ZIndex":14,"DataSetName":"收入类","Style":{"FontFamily":"微软雅黑","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"},"Bar":{"BottomWidth":0.7,"TopWidth":0.7,"Width":0.7},"Header":{"Style":{"PaddingTop":"4pt","PaddingBottom":"2pt"},"TextStyle":{"FontFamily":"微软雅黑","FontSize":"16pt","Color":"#2f2f2f"},"Title":"图表标题"},"Footer":{"Style":{"PaddingTop":"2pt","PaddingBottom":"4pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}},"Legend":{"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"Wrapping":true},"PlotArea":{"Axes":[{"Format":"","LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingTop":"3pt","PaddingBottom":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}},{"AxisType":"Y","Format":"","LabelStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"3pt","PaddingRight":"3pt"},"LineStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MajorGrid":true,"MajorGridStyle":{"Border":{"Color":"#d2d2d2","Style":"Solid","Width":"0.5pt"}},"MajorTicks":"Outside","MajorTickSize":"0.2pt","MajorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"MinorGridStyle":{"Border":{"Color":"#e6e6e6","Style":"Solid","Width":"0.5pt"}},"MinorTickSize":"0.1pt","MinorTickStyle":{"Border":{"Color":"#666666","Style":"Solid","Width":"0.5pt"}},"Plots":["绘图区域 1"],"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f","PaddingLeft":"2pt","PaddingRight":"2pt","PaddingTop":"2pt","PaddingBottom":"2pt"}}],"Legends":[{"Orientation":"Vertical","Style":{"PaddingRight":"5pt"},"TextStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"},"TitleStyle":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}]},"Plots":[{"PlotName":"绘图区域 1","Encodings":{"Values":[{"Field":{"FieldType":"Simple","Value":["=sum(Fields!材料费.Value)",""]}},{"Field":{"FieldType":"Simple","Value":["=sum(Fields!化验费.Value)",""]}},{"Field":{"FieldType":"Simple","Value":["=sum(Fields!检查费.Value)",""]}},{"Field":{"FieldType":"Simple","Value":["=sum(Fields!床位费.Value)",""]}},{"Field":{"FieldType":"Simple","Value":["=sum(Fields!手术费.Value)",""]}}],"Category":{"Field":{"FieldType":"Simple","Value":["=Fields!创建时间.Value"]}},"Color":{"Field":{"FieldType":"Simple"}},"Shape":{"Field":{"FieldType":"Simple"}},"Size":{"Field":{"FieldType":"Simple"}}},"Config":{"LineStyle":{"Style":"None","Width":"1pt"},"Text":{"Style":{"FontFamily":"微软雅黑","Color":"#2f2f2f"}}},"PlotChartType":"Column","PlotChartSubtype":"Clustered"}],"Left":"18cm","Top":"14.8cm","Width":"18.3cm","Height":"7.2cm"}],"Style":{"BackgroundColor":"WhiteSmoke"}},"DataSets":[{"Name":"数据集1","Fields":[{"Name":"科室","DataField":"科室"},{"Name":"预约人数","DataField":"预约人数"},{"Name":"到诊人数","DataField":"到诊人数"},{"Name":"住院人数","DataField":"住院人数"},{"Name":"复诊人数","DataField":"复诊人数"},{"Name":"收入","DataField":"收入"},{"Name":"创建时间","DataField":"创建时间"}],"Query":{"DataSourceName":"数据源1","CommandText":"jpath=$.[*]"},"CaseSensitivity":"Auto","KanatypeSensitivity":"Auto","AccentSensitivity":"Auto","WidthSensitivity":"Auto"},{"Name":"数据集2","Fields":[{"Name":"项目名称","DataField":"项目名称"},{"Name":"收入","DataField":"收入"},{"Name":"创建时间","DataField":"创建时间"}],"Query":{"DataSourceName":"DataSource","CommandText":"jpath=$.[*]"},"CaseSensitivity":"Auto","KanatypeSensitivity":"Auto","AccentSensitivity":"Auto","WidthSensitivity":"Auto"},{"Name":"数据集3","Fields":[{"Name":"类型","DataField":"类型"},{"Name":"收入","DataField":"收入"},{"Name":"创建时间","DataField":"创建时间"}],"Query":{"DataSourceName":"DataSource1","CommandText":"jpath=$.[*]"},"CaseSensitivity":"Auto","KanatypeSensitivity":"Auto","AccentSensitivity":"Auto","WidthSensitivity":"Auto"},{"Name":"门诊疾病","Fields":[{"Name":"疾病类型","DataField":"疾病类型"},{"Name":"患病人数","DataField":"患病人数"},{"Name":"创建时间","DataField":"创建时间"}],"Query":{"DataSourceName":"DataSource2","CommandText":"jpath=$.[*]"},"CaseSensitivity":"Auto","KanatypeSensitivity":"Auto","AccentSensitivity":"Auto","WidthSensitivity":"Auto"},{"Name":"收入类","Fields":[{"Name":"材料费","DataField":"材料费"},{"Name":"化验费","DataField":"化验费"},{"Name":"检查费","DataField":"检查费"},{"Name":"床位费","DataField":"床位费"},{"Name":"手术费","DataField":"手术费"},{"Name":"药费","DataField":"药费"},{"Name":"创建时间","DataField":"创建时间"}],"Query":{"DataSourceName":"DataSource3","CommandText":"jpath=$.[*]"},"CaseSensitivity":"Auto","KanatypeSensitivity":"Auto","AccentSensitivity":"Auto","WidthSensitivity":"Auto"}]}