C#.net使用DotNetCharting控件生成报表统计图(20页).doc

上传人:1595****071 文档编号:34787758 上传时间:2022-08-18 格式:DOC 页数:22 大小:104.50KB
返回 下载 相关 举报
C#.net使用DotNetCharting控件生成报表统计图(20页).doc_第1页
第1页 / 共22页
C#.net使用DotNetCharting控件生成报表统计图(20页).doc_第2页
第2页 / 共22页
点击查看更多>>
资源描述

《C#.net使用DotNetCharting控件生成报表统计图(20页).doc》由会员分享,可在线阅读,更多相关《C#.net使用DotNetCharting控件生成报表统计图(20页).doc(22页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、-C#.net使用DotNetCharting控件生成报表统计图在做项目时要对数据进行统计分析,所以必须生成一些报表统计图(如柱形图、饼图、曲线图等),网上强烈推荐了使用 DotNetCharting控件来实现,于是自己对DotNetCharting控件进行了简单的学习,下面先简单介绍一下 DotNetCharting控件及其使用。 DotNetCharting是一个非常棒的.NET图表控件,对中文支持非常好,而且操作方便,开发快速,既有for webform 也有for winform的,而且.net1.1和2.0都有支持。它的官方地址是 本站也提供了DotNetCharting破解版本下载

2、: 强烈推荐一下DotNetCharting的demo地址: 这个是所有的 DEMO 演示 这个是 Online Documentation 里面会有详细的说明和用法。 DotNetCharting的简单使用方法: 1.把bindotnetCHARTING.dll添加到工具箱,并且添加引用; 2.把控件拖到你的网页上,然后添加引用using dotnetCHARTING;就可以用了; 3.接下来是自己写的对DotNetCharting操作的封装类,以便于在程序里调用。ShowData.csusing System;using System.Data;using System.Text;usin

3、g dotnetCHARTING;namespace FLX.ComplexQuery /*/ / 彭建军 / 根据数据动态生成图形(柱形图、饼图、曲线图) / 2008-06-19 / public class ShowData 属性#region 属性 private string _phaysicalimagepath;/图片存放路径 private string _title; /图片标题 private string _xtitle;/图片x座标名称 private string _ytitle;/图片y座标名称 private string _seriesname;/图例名称 pr

4、ivate int _picwidth;/图片宽度 private int _pichight;/图片高度 private DataTable _dt;/图片数据源 /*/ / 图片存放路径 / public string PhaysicalImagePath set_phaysicalimagepath=value; getreturn _phaysicalimagepath; /*/ / 图片标题 / public string Title set_title=value; getreturn _title; /*/ / 图片标题 / public string XTitle set_xt

5、itle=value; getreturn _xtitle; /*/ / 图片标题 / public string YTitle set_ytitle=value; getreturn _ytitle; /*/ / 图例名称 / public string SeriesName set_seriesname=value; getreturn _seriesname; /*/ / 图片宽度 / public int PicWidth set_picwidth=value; getreturn _picwidth; /*/ / 图片高度 / public int PicHight set_pich

6、ight=value; getreturn _pichight; /*/ / 图片数据源 / public DataTable DataSource set_dt=value; getreturn _dt; #endregion 构造函数#region 构造函数 public ShowData() / / TODO: 在此处添加构造函数逻辑 / public ShowData(string PhaysicalImagePath,string Title,string XTitle,string YTitle,string SeriesName) _phaysicalimagepath=Phay

7、sicalImagePath; _title=Title; _xtitle=XTitle; _ytitle=YTitle; _seriesname=SeriesName; #endregion 输出柱形图#region 输出柱形图 /*/ / 柱形图 / / public void CreateColumn(dotnetCHARTING.Chart chart) chart.Title=this._title; chart.XAxis.Label.Text=this._xtitle; chart.YAxis.Label.Text=this._ytitle; chart.TempDirector

8、y =this._phaysicalimagepath; chart.Width = this._picwidth; chart.Height = this._pichight; chart.Type = ChartType.Combo ; chart.Series.Type =SeriesType.Cylinder; chart.Series.Name = this._seriesname; chart.Series.Data = this._dt; chart.SeriesCollection.Add(); chart.DefaultSeries.DefaultElement.ShowVa

9、lue = true; chart.ShadingEffect = true; chart.Use3D = false; chart.Series.DefaultElement.ShowValue =true; #endregion 输出饼图#region 输出饼图 /*/ / 饼图 / / public void CreatePie(dotnetCHARTING.Chart chart) chart.Title=this._title; chart.TempDirectory =this._phaysicalimagepath; chart.Width = this._picwidth; c

10、hart.Height = this._pichight; chart.Type = ChartType.Pie; chart.Series.Type =SeriesType.Cylinder; chart.Series.Name = this._seriesname; chart.ShadingEffect = true; chart.Use3D = false; chart.DefaultSeries.DefaultElement.Transparency = 20; chart.DefaultSeries.DefaultElement.ShowValue = true; chart.Pi

11、eLabelMode = PieLabelMode.Outside; chart.SeriesCollection.Add(getArrayData(); chart.Series.DefaultElement.ShowValue = true; private SeriesCollection getArrayData() SeriesCollection SC = new SeriesCollection(); DataTable dt = this._dt; for(int i=0; i dt.Rows.Count; i+) Series s = new Series(); s.Name

12、 = dt.Rowsi0.ToString(); Element e = new Element(); / 每元素的名称 e.Name = dt.Rowsi0.ToString(); / 每元素的大小数值 e.YValue=Convert.ToInt32(dt.Rowsi1.ToString(); s.Elements.Add(e); SC.Add(s); return SC; #endregion 输出曲线图#region 输出曲线图 /*/ / 曲线图 / / public void CreateLine(dotnetCHARTING.Chart chart) chart.Title=th

13、is._title; chart.XAxis.Label.Text=this._xtitle; chart.YAxis.Label.Text=this._ytitle; chart.TempDirectory =this._phaysicalimagepath; chart.Width = this._picwidth; chart.Height = this._pichight; chart.Type = ChartType.Combo ; chart.Series.Type =SeriesType.Line; chart.Series.Name = this._seriesname; ch

14、art.Series.Data = this._dt; chart.SeriesCollection.Add(); chart.DefaultSeries.DefaultElement.ShowValue = true; chart.ShadingEffect = true; chart.Use3D = false; chart.Series.DefaultElement.ShowValue =true; #endregion 调用说明及范例#region 调用说明及范例 / 在要显示统计图的页面代码直接调用,方法类似如下: / ShowData show=new ShowData(); /

15、show.Title =2008年各月消费情况统计;/ show.XTitle =月份;/ show.YTitle =金额(万元);/ show.PicHight =300;/ show.PicWidth =600;/ show.SeriesName =具体详情;/ show.PhaysicalImagePath =ChartImages;/ show.DataSource =this.GetDataSource();/ show.CreateColumn(this.Chart1); #endregion 效果图展示: 1、饼图 2、柱形图 3、曲线图 补充: 帖子发了一天,没人回答我多维统计

16、图的实现方式,只好自己去dotnetcharting的官方网站下载了最新的dotnetcharting控件,在 dotnetcharting控件的使用说明文档中详细地介绍了各种多维统计图的实现方式。现把说明文档贴出来供大家下载 dotnetcharting使用说明文档 追加补充新内容: 1、解决“每运行一次DotNetCharting页面,就会生成一个图片,这样图片不是越来越多吗?请问怎样自动删除DotNetCharting生成的图片呢”的问题,参照删除文件夹里的所有文件 。 2、解决“(1)生成的图片带超链接导向官网,如何处理呀?(2)我使用这个控件后,图形可以显示出来。但是发现一个小问题。就是在图形的左上方和图形的 下面都隐含了超链接,鼠标移动到这两个区域后,点击都会链接到 吗?”等类似的问题,参照DotnetCharting控件各版本破解方法 。第 22 页-

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 单元课程

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁