彩票走势图

如何运用Dundas Chart 绘制曲线图

转帖|其它|编辑:郝浩|2010-08-23 11:49:29.000|阅读 3982 次

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

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

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

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

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

 图形控件,Dundaschart控件

  项目中有这样的需求,之前采用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值,而被测数据误差和预测数据误差设置为接受,也要填写对应的数据项目来接收 ,否则会出错。


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:博客园

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP