HighCharts图表控件在ASP.NET WebForm中的使用总结(全)
从事过asp.net开发的可能都会接触到一些图表控件,比如owc、zendgraph等等,这些控件都有一个特点,那就是我们可以像操作.net中的对象一样控制它们的某些属性,有可能在本地开发好了上传到服务器端部署运行的时候会出现权限问题而导致不能正常运行。本篇周公讲述一个javascript的图表控件,不要小看了这个javascript图表控件,它能生成各种常见的图表。
highcharts 是一个用纯javascript编写的一个图表库, 能够很简单便捷的在web网站或是web应用程序添加有交互性的图表,并且免费提供给个人学习、个人网站和非商业用途使用。目前highcharts支持的图表类型有曲线图、区域图、柱状图、饼状图、散状点图和综合图表。
highcharts使用原理如下图所示:
普通开发模式是在前端应用jquery和highchartsjs库文件,然后在<head>头中写js脚本,例如绘制饼图jquery脚本如下:
绘制饼图jquery脚本
$(function () { $('#container').highcharts({ chart: { plotbackgroundcolor: null, plotborderwidth: null, plotshadow: false }, title: { text: 'browser market shares at a specific website, 2010' }, tooltip: { pointformat: '{series.name}: <b>{point.percentage}%</b>', percentagedecimals: 1 }, plotoptions: { pie: { allowpointselect: true, cursor: 'pointer', datalabels: { enabled: true, color: '#000000', connectorcolor: '#000000', formatter: function() { return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %'; } } } }, series: [{ type: 'pie', name: 'browser share', data: [ ['firefox', 45.0], ['ie', 26.8], { name: 'chrome', y: 12.8, sliced: true, selected: true }, ['safari', 8.5], ['opera', 6.2], ['others', 0.7] ] }] }); });
其中data属性为图表绑定数据源。但这种方式也存在明显问题:
前端代码量过大
绑定动态数据比较困难,可取的方法是使用$.ajax异步方法解析webservices或者一般处理程序ashx,然后对返回结果进行json序列化处理,比较麻烦容易出错。
highcharts的js调用代码无法实现代码重用。
解决方案是使用第三方highcharts组件donet.highcharts, 该组件是一个服务器端生成highcharts js脚本的开源组件,然后通过输出流的方式插入到页面body块的div中,原理如下图所示:
donet.highcharts开发环境为(二选一)
vs2008+asp.net mvc3+.net 3.5
vs2010+.net 4.0
donet.highcharts开源项目是以asp.net mvc3 project的形式分发的,开发人员可以参考控制器文件夹controlls中的democontroller中每种图表的后台代码(和前台highcharts js代码基本一致)
mvc原理在这里做简单表述,便于程序员阅读该代码。
m:module 模型层
v:view 视图层
c:controll 控制层
当客户端发送一个action动作时,根据动作名找到controll控制器中相应的方法名。例如 http://localhost/charts/demo/basicline,mvc 框架根据全局路由配置自动映射到basicline控制器方法,控制器方法返回一个result并导航到views文件夹下的同名视图basicline.cshtml(cshtml可以理解为webform的aspx)然后加载视图。
asp.net mvc和asp.net web form方式不同,所以以上mvc实现方式需要修改才能在webform中使用。以下以“各种类产品均价统计功能”柱形图(涉及到northwind数据库的products和categories表)为例说明webform中如何使用donet.highcharts。
1: 创建查询视图view_categoryavgprice
2: 创建强名称数据集northwind.xsd
数据集分为强名称数据集和弱名称数据集(dataset)两种,具体原理就不展开描述了。拖放view_categoryavgprice和categories表到数据集中。
3: 柱形图控制器方法(columnwithdrilldown)在aspx页面中的主要代码实现
柱形图控制器方法(columnwithdrilldown)在aspx页面中的主要代码实现
//导入donet.highcharts包 using dotnet.highcharts; using dotnet.highcharts.options; using dotnet.highcharts.enums; using dotnet.highcharts.helpers; using system.drawing; using northwindtableadapters; /// <summary> /// 种类商品价格统计类 /// </summary> public class categoryprice { public decimal price { set; get; } public string categoryname { set; get; } } public partial class columnwithdrilldown : system.web.ui.page { #region 创建强名称数据集表对象和数据适配器对象 private northwind.view_categoryavgpricedatatable avgpricedt; avgpricedt= new northwind.view_categoryavgpricedatatable(); private northwind.categoriesdatatable categorydt = new northwind.categoriesdatatable(); private view_categoryavgpricetableadapter avgpriceadapter = new view_categoryavgpricetableadapter(); private categoriestableadapter categoryadapter = new categoriestableadapter(); #endregion private list<categoryprice> avgpricelist=null;//绑定数据源集合 protected void page_load(object sender, eventargs e) { loadcolumnwithdrilldown(); } public void loadcolumnwithdrilldown() { avgpriceadapter.fill(avgpricedt); categoryadapter.fill(categorydt); //按产品种类分组显示linq表达式 avgpricelist = ( from p in avgpricedt group p by p.categoryid into g//根据种类编号分组 select new categoryprice { //种类名称 categoryname=categorydt.first(c=>c.categoryid==g.key).categoryname, //种类商品均价 price = g.average(c => c.unitprice) } ).tolist(); //显示柱形图的种类名称数组 string[] categories = new string[avgpricelist.count()]; int index = 0; foreach (var item in avgpricelist) { categories[index++] = item.categoryname; } data data = loaddate();//柱形图动态绑定的数据源 //省略highcharts脚本代码,同mvc代码 div1.innerhtml = chart.tohtmlstring();//转换为highcharts的客户端脚本插入到div1中 } //根据汇总的种类商品创建柱形图节点对象的方法 private data loaddate() { data data = null; int index =-1; //创建柱形图显示的节点对象 dotnet.highcharts.options.point []pointlist=new dotnet.highcharts.options.point[avgpricelist.count]; foreach (var item in avgpricelist) { pointlist[++index] = new dotnet.highcharts.options.point { y = (number)(item.price*100)/100.0, color = color.fromname(string.format("colors[{0}]", index)) }; } data = new data(pointlist); return data; } }
显示效果如下图所示:
以上就是本文的全部叙述,希望对大家有所帮助。