控件中国网现已改版,您看到的是老版本网站的镜像,系统正在为您跳转到新网站首页,请稍候.......
中国最专业的商业控件资讯网产品咨询电话:023-67870900 023-67871946
产品咨询EMAIL:SALES@COMPONENTCN.COM

如何运用Dundas Chart 绘制曲线图

作者:博客园 出处:博客园 2010年08月23日 阅读:

最近项目中想采用Dundas Chart绘制图形,于是让我们先试试可不可以满足原有的所有图形,所以开始学习Dundas Chart控件+VS2008绘制图形。

  在这期间也遇到了好多问题,Dundas Chart图形控件本身没有多饼图的样式,所以采用添加多个 ChartArea 来绘制多饼图,这样有一个缺点就是,它自动分配的区域是从上到下,从左到右排列,一般我们都是水平方向排列,要想实现这样的话就得自己设置区域的左上角(x、y坐标),宽度和高度大小。

  还有一个问题就是在绘制散点图的时候,需要添加趋势线(线性回归分析),例如Excel 2007中,如下图:

项目中有这样的需求,之前采用TeeChart做过这样的图形,原以为Dundas不存在这样的函数,通过自己查看帮助和厂家的技术人员交流后,存在这样的功能,并且可以完成这样的图形,具体方法如下:

 chart.BackGradientEndColor = Color.White;
 chart.BackColor = Color.White;
 chart.BackGradientType = GradientType.DiagonalLeft;
chart.Palette = ChartColorPalette.Dundas;
chart.BorderLineColor = Color.FromArgb(26, 59, 105);
chart.BorderLineStyle = ChartDashStyle.Solid;
chart.BorderLineWidth = 1;
chart.BorderSkin.FrameBackColor = Color.CornflowerBlue;
chart.BorderSkin.FrameBackGradientEndColor = Color.CornflowerBlue;
chart.BorderSkin.PageColor = Color.CadetBlue;
chart.BorderSkin.SkinStyle = BorderSkinStyle.None;

chart.Width = 700;
chart.Height = 500;
chart.ImageType = ChartImageType.Jpeg;

//----------绑定数据----------
ds = OracleDB.Dataset(sqlString);
chart.DataSource = ds;
DataView dv = new DataView(ds.Tables[0]);

if (ds.Tables[0].Rows.Count > 0)
{
//----------设置图表区域样式----------
chart.ChartAreas.Clear();
for (int C = 1; C < 2; C++)
{
ChartArea chartarea = new ChartArea();
chartarea.Name = "ChartArea" + C.ToString();
chart.ChartAreas.Add(chartarea);
chart.ChartAreas["ChartArea" + C.ToString()].Area3DStyle.Enable3D = false;
chart.ChartAreas["ChartArea" + C.ToString()].AlignOrientation = AreaAlignOrientation.All;
chart.ChartAreas["ChartArea" + C.ToString()].Area3DStyle.Light = LightStyle.Simplistic;
chart.ChartAreas["ChartArea" + C.ToString()].BorderWidth = 1;
chart.ChartAreas["ChartArea" + C.ToString()].BorderStyle = ChartDashStyle.Solid;
chart.ChartAreas["ChartArea" + C.ToString()].BackColor = Color.White;
chart.ChartAreas["ChartArea" + C.ToString()].Position.Auto = true;
chart.ChartAreas["ChartArea" + C.ToString()].AxisX.Title = "A(10^4t)";
chart.ChartAreas["ChartArea" + C.ToString()].AxisX.MajorGrid.LineStyle = ChartDashStyle.Dash;
chart.ChartAreas["ChartArea" + C.ToString()].AxisX.MajorTickMark.Style = TickMarkStyle.Inside;
chart.ChartAreas["ChartArea" + C.ToString()].AxisY.Title = "B";
chart.ChartAreas["ChartArea" + C.ToString()].AxisY.MajorGrid.LineStyle = ChartDashStyle.Dash;
chart.ChartAreas["ChartArea" + C.ToString()].AxisY.MajorTickMark.Style = TickMarkStyle.Inside;
chart.ChartAreas["ChartArea" + C.ToString()].AxisY.StartFromZero = false;
}

//----------添加标题----------
chart.Titles["Title1"].Text = "散点图趋势线" ;
chart.Titles["Title1"].Alignment = ContentAlignment.TopCenter;
chart.Titles["Title1"].Font = new Font("Microsoft Sans Serif", 12, FontStyle.Bold);
chart.Titles["Title1"].Color = Color.FromArgb(72, 72, 72);
chart.Titles["Title1"].DockInsideChartArea = false;

//----------设置图例区域样式----------
chart.Legends["Default"].Enabled = false;
chart.Legends.Clear();
for (int L = 1; L < 2; L++)
{
Legend legend = new Legend();
legend.Name = "Legend" + L.ToString();
chart.Legends.Add(legend);
legend.DockToChartArea = "ChartArea" + L.ToString();
chart.Legends["Legend" + L.ToString()].Alignment = StringAlignment.Center;
chart.Legends["Legend" + L.ToString()].Docking = LegendDocking.Right;//图例显示位置
chart.Legends["Legend" + L.ToString()].DockInsideChartArea = false;
chart.Legends["Legend" + L.ToString()].BackColor = Color.Transparent;
chart.Legends["Legend" + L.ToString()].BorderStyle = ChartDashStyle.Solid;
chart.Legends["Legend" + L.ToString()].BorderWidth = 1;
}


//----------添加图形系列---------
chart.Series.Clear();
Series series = new Series();
series.Name = "Series1";
chart.Series.Add(series);
series.ChartArea = "ChartArea1";
series.Type = SeriesChartType.Point;
//-----必须添加第二个空系列,Type为直线(Line),用于趋势线
Series series2 = new Series();
series2.Name = "Series2";
chart.Series.Add(series2);
series2.ChartArea = "ChartArea1";
series2.Type = SeriesChartType.Line;
series2.Color = Color.Red;

this.chart.Series["Series1"].Points.DataBindXY(dv, "A", dv, "B");
this.chart.DataManipulator.FormulaFinancial(FinancialFormula.Forecasting, "Linear,1,true,true", "Series1:Y", "Series2:Y,Series2:Y2,Series2:Y3");

//----------添加图形----------
this.Pal_Chart.Controls.Add(chart);

在这段代码中,倒数第二句非常重要,也是用来添加趋势线的函数,我之前使用的时候出现了好多问题,经过技术人员的指导,总算是清楚了这个函数的正确的使用方法。如下:

//错误写法 
this.Chart1.DataManipulator.FormulaFinancial(FinancialFormula.Forecasting, "Linear,2,true,true", "Series1:Y", "Series2:Y");
//正确 
this.Chart1.DataManipulator.FormulaFinancial(FinancialFormula.Forecasting, "Linear,2,true,true", "Series1:Y", "Series2:Y,Series2:Y2,Series2:Y3");  

  这里用到了四个参数:

  第一个是选择的统计公式,可有好多种选择,具体不在细说,可以看帮助。

  主说的是第二个参数和第四个参数:

  第二个参数中第1项指定的是预测类型(Exponential、Logarithmic、Power和Linear)、第2项是预测的数据量(这里不光是趋势线,它还可以做预测,因此要填写预测的数据量)、第3项是是否填写被测数据误差、第4项是是否填写预测数据误差。

  第四个参数是用来接收,通过对第二个参数的3,4项的了来看,输出中可以看到Series2:Y是第一个用来接收2个数据点预测的Y值,而被测数据误差和预测数据误差设置为接受,也要填写对应的数据项目来接收 ,否则会出错。

热推产品

  • ActiveReport... 强大的.NET报表设计、浏览、打印、转换控件,可以同时用于WindowsForms谀坔攀戀Forms平台下......
  • AnyChart AnyChart使你可以创建出绚丽的交互式的Flash和HTML5的图表和仪表控件。可以用于仪表盘的创......
首页 | 新闻中心 | 产品中心 | 技术文档 | 友情连接 | 关于磐岩 | 技术支持中心 | 联系我们 | 帮助中心 Copyright-2006 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 电话:023 - 67870900 传真:023 - 67870270 产品咨询:sales@componentcn.com 渝ICP备12000264号 法律顾问:元炳律师事务所 重庆市江北区塔坪36号维丰创意绿苑A座28-5 邮编:400020
在线客服
在线客服系统
在线客服
在线客服系统