asp.net下使用C#实现动态绘制图表

最近一直在做毕业设计,大体上是一个信息管理系统。关键的功能是实现一些简单的统计分析,所以要在网页中加一些图表显得清晰直观一些。那么既然完成了,那就简单总结一下,也算对得起这个项目了。估计上去以后也很少在接触asp.net,感觉asp.net还是一门非常有发展前景且方便的技术,只是对其还是有太多的限制和歧视存在。

/*****************************************此处开始正文,前方自动无视**************************************/

BS结构的程序最头疼的就是web报表的制作,虽然有水晶报表这一控件。

但是那是付费的,要正版啊亲,再说了我们只是实现简单的功能有木有,所以不用那么复杂吧。

总之,本文的目的是通过C#提供的System.Drawing2D下的绘图类动态生成报表。

项目中一共用到了饼图和折现图,所以也就实现了这两个图形的回执功能。

先来看看类图:


先放上GraphicBase类和IGraphic的接口:

 /************************************************
 **GraphicBase.cs
 **绘图基类,实现动态图表的绘制
 **编译环境:VS2010,Windows7 C#4.0
 **2012-5-18
**************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;

namespace Graphic
{
    public  abstract class GraphicBase
    {
        #region Properties
        public String Title
        {
            get { return this._titletxt; }
            set { this._titletxt = value; }
        }
        public int Width
        {
            get { return this._width; }
            set { this._width = value; }
        }
        public int Height
        {
            get { return this._height;  }
            set { this._height = value; }
        }
        public Font TitleFont
        {
            get { return this._titlefont; }
            set { this._titlefont = value; }
        }
        pub

你可能感兴趣的:(ASP.NET,asp.net,c#,float,colors,properties,string)