1、用ZedGraph控件画统计分析图 由于朋友需要把C1WebChart.替换掉,改用开源的ZedGraph控件.以下做一个示例,供大家参考: 步骤如下: 1、添加ZedGraph控件。如下图: 2、添加到控制面版。如下图: 3、制作用户控件。 a> 建立一个命名为: DrawGrap.ascx 用户控件。 b> 通过控制面版,把ZedGraphWeb拖到默认页面。 如下图: c> 生成代码(DrawGrap.ascx)如下: <%@ Control Language="C#" AutoEventWireup=
2、"true" CodeFile="DrawGrap.ascx.cs" Inherits="DrawGrap" %>
<%@ Register TagPrefix="zgw" Namespace="ZedGraph.Web" Assembly="ZedGraph.Web" %>
3、ing System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Drawing; using ZedGraph; usi
4、ng ZedGraph.Web;
using System.Collections.Generic;
/**////
5、ttribute
/**////
6、/// 统计图的名称
///
public string Title;
/**////
7、e
///
public AnalyticsType Type;
/**//// 8、e>();
/**//// 9、y>
public List 10、tColors()
...{
defaultColors.Add(Color.Red);
defaultColors.Add(Color.Green);
defaultColors.Add(Color.Blue);
defaultColors.Add(Color.Yellow);
defaultColors.Add(Color.YellowGreen);
defaultColors.Add(Color.Brown);
11、 defaultColors.Add(Color.Aqua);
defaultColors.Add(Color.Cyan);
defaultColors.Add(Color.DarkSeaGreen);
defaultColors.Add(Color.Indigo);
}
/**//// 12、Property()
...{
InitDefaultColors();
if (string.IsNullOrEmpty(Title))
...{
Title = "未命名统计图";
}
if (string.IsNullOrEmpty(XAxisTitle))
...{
XAxisTitle = "横轴";
}
13、 if (string.IsNullOrEmpty(YAxisTitle))
...{
YAxisTitle = "纵轴";
}
if (Type == AnalyticsType.Pie)
...{
Count = ScaleData.Count;
}
else
...{
Count = DataSou 14、rce.Count;
}
if (Colors.Count == 0 || Colors.Count != Count)
...{
Random r = new Random();
int tempIndex = 0;
List 15、 ...{
tempIndex = r.Next(defaultColors.Count);
if (tempIndexList.Contains(tempIndex))
...{
i--;
}
else
...{
tempInde 16、xList.Add(tempIndex);
Colors.Add(defaultColors[tempIndex]);
}
}
}
if (NameList.Count == 0)
...{
if (Type == AnalyticsType.Bar)
...{
for (int i 17、 0; i < DataSource[0].Count; i++)
...{
NameList.Add("第" + i.ToString() + "组");
}
}
else
...{
for (int i = 0; i < Count; i++)
...{
18、 NameList.Add("第" + i.ToString() + "组");
}
}
}
if (LabelList.Count == 0)
...{
for (int i = 0; i < Count; i++)
...{
LabelList.Add("含义" + i.ToString());
19、 }
}
}
/**//// 20、dGraphWeb webObject, System.Drawing.Graphics g, ZedGraph.MasterPane pane)
...{
InitProperty();
GraphPane myPane = pane[0];
myPane.Title.Text = Title;
myPane.XAxis.Title.Text = XAxisTitle;
myPane.YAxis.Title.Text = YAxisTit 21、le;
//if (true)
//{
// DrawMessage(myPane, "yiafdhaskjhfasfksahfasdlhfaslf lasgfasglgsadi");
// pane.AxisChange(g);
// return;
//}
switch (Type)
...{
case AnalyticsTy 22、pe.Line:
DrawLine(myPane);
break;
case AnalyticsType.Bar:
DrawBar(myPane);
break;
case AnalyticsType.Pie:
DrawPie(myPane);
break;
23、 default:
break;
}
pane.AxisChange(g);
}
Draw#region Draw
/**//// 24、 ...{
for (int i = 0; i < Count; i++)
...{
graphPane.AddCurve(NameList[i], DataSource[i], Colors[i], SymbolType.None);
}
}
/**//// 25、
private void DrawBar(GraphPane graphPane)
...{
for (int i = 0; i < Count; i++)
...{
graphPane.AddBar(LabelList[i], DataSource[i], Colors[i]).Bar.Fill = new Fill(Colors[i], Color.White, Colors[i]);
}
graph 26、Pane.XAxis.MajorTic.IsBetweenLabels = true;
string[] labels = NameList.ToArray();
graphPane.XAxis.Scale.TextLabels = labels;
graphPane.XAxis.Type = AxisType.Text;
graphPane.Fill = new Fill(Color.White, Color.FromArgb(200, 200, 255), 45.0f);
27、 graphPane.Chart.Fill = new Fill(Color.White, Color.LightGoldenrodYellow, 45.0f);
}
/**//// 28、Fill = new Fill(Color.White, Color.Silver, 45.0f);
graphPane.Legend.Position = LegendPos.Float;
graphPane.Legend.Location = new Location(0.95f, 0.15f, CoordType.PaneFraction, AlignH.Right, AlignV.Top);
graphPane.Legend.FontSpec.Size = 20f;
graphP 29、ane.Legend.IsHStack = false;
for (int i = 0; i < Count; i++)
...{
graphPane.AddPieSlice(ScaleData[i], Colors[i], Color.White, 45f, 0, NameList[i]);
}
}
/**//// 30、 ///
///
private void DrawMessage(GraphPane graphPane, string message)
...{
TextObj text = new TextObj(message, 200, 200);
text.Text = message;
graphPane.GraphObjLis 31、t.Add(text);
}
#endregion
}
e> 用户控件制作完成。
4、对控件的使用。
a> 创建测试页面(DrawGrap.aspx)
b> 把用户控件DrawGrap.ascx 拖到默认的测试页面上(DrawGrap.aspx)
c> 后台代码如下:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using S 32、ystem.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class DrawGrap : System.Web.UI.Page
...{
protected void Page_Load(object sender, EventArgs e)
...{
//柱状图
33、 DrawBar();
//饼图
//DrawPie();
//曲线图
//DrawLine();
}
private void DrawBar()
...{
DrawGrap1.Type = AnalyticsType.Bar;
DrawGrap1.Title = "用户访问柱状图";
DrawGrap1.XAxisTitle = "月份";
DrawGrap1.YAxisTitle = "用户访问数量";
34、 Random rand = new Random();
for (int i = 0; i < 6; i++)
...{
ZedGraph.PointPairList ppl = new ZedGraph.PointPairList();
for (int j = 0; j < 3; j++)
...{
double x = rand.Next(10);
double y = rand.NextDo 35、uble() * 1000;
ppl.Add(x, y);
}
DrawGrap1.DataSource.Add(ppl);
}
}
private void DrawPie()
...{
DrawGrap1.Type = AnalyticsType.Pie;
DrawGrap1.Title = "用户访问饼图";
Random rand = new Random();
for (int 36、 i = 0; i < 3; i++)
...{
DrawGrap1.ScaleData.Add((i + 2) * rand.Next(100));
DrawGrap1.NameList.Add(i.ToString());
}
}
private void DrawLine()
...{
DrawGrap1.Type = AnalyticsType.Line;
DrawGrap1.Title = "用户访问曲线图";
37、 DrawGrap1.XAxisTitle = "月份";
DrawGrap1.YAxisTitle = "用户访问数量";
Random rand = new Random();
for (int i = 0; i < 3; i++)
...{
ZedGraph.PointPairList ppl = new ZedGraph.PointPairList();
for (double x = 0; x < 5; x += 1.0)
...{ 38、
double y = rand.NextDouble() * 1000;
ppl.Add(x, y);
}
DrawGrap1.DataSource.Add(ppl);
DrawGrap1.NameList.Add(i.ToString());
}
}
}
d> 生成的柱状图如下:
e> 生成的曲线图如下:
f> 生成的饼图如下:
5、补充说明
a> 成功部署该项目需要在虚拟网站建临时文件夹(ZedGraphImages),便于存放生成的临时文件。
b> 据说该控件支持3D图效果,具体我没测试。希望有兴趣的同学可以测试。
(这些图一般的项目应用就足够了。)






