为了访问系列的 指标线 集合 (通过 XYDiagram2DSeriesViewBase.Indicators 属性),应该把系列视图转换为适当的类型。
C# | 复制代码 |
---|---|
// Create a regression line for the Open value level. RegressionLine myLine = new RegressionLine(ValueLevel.Open); // Access the series collection of indicators, // and add the regression line to it. ((StockSeriesView)chartControl1.Series[0].View).Indicators.Add(myLine); // Customize the regression line's appearance. myLine.LineStyle.DashStyle = DashStyle.DashDot; myLine.LineStyle.Thickness = 2; myLine.Color = Color.Crimson; |
Visual Basic | 复制代码 |
---|---|
' Create a regression line for the Open value level. Dim myLine As New RegressionLine(ValueLevel.Open) ' Access the series collection of indicators, ' and add the regression line to it. CType(chartControl1.Series(0).View, StockSeriesView).Indicators.Add(myLine) ' Customize the regression line's appearance. myLine.LineStyle.DashStyle = DashStyle.DashDot myLine.LineStyle.Thickness = 2 myLine.Color = Color.Crimson |
在下面的插图中显示了结果。
Show Me |
---|
在 DevExpress Code Central 数据库中可以找到完整的示例项目,网址是 http://www.devexpress.com/example=E1494。 取决于目标平台类型 (ASP.NET、WinForms 等),可以在线运行本示例,或者下载自动可执行的示例。 |