简要说明
折线图 是由 LineSeriesView 对象来表示的,此对象属于 点、折线和样条系列视图。 当需要在相同的图象中显示多个系列的趋势、并且比较相同点参数的多个系列取值时,使用这种视图。
在下面的插图中显示了一个折线图。 注意,这种图表类型基于 XYDiagram,因此可以被旋转,从而垂直地或水平地显示图表。
图表类型特征
下表列出了这种图表类型的主要特征。
特征 |
取值 |
---|---|
系列视图类型 | LineSeriesView |
图象类型 | 2D- XYDiagram |
每个数据点的参数个数 | 1 |
每个数据点的取值个数 | 1 |
注意 |
---|
要获得关于哪些图表类型可以与 折线图 组合使用的信息,请参阅 组合使用不同的系列视图 文档。 |
示例
下面的示例演示了在运行时刻如何创建 ChartControl (拥有两个 LineSeriesView 类型的系列),并把图表添加到窗体中。 在继续本示例之前,首先要在 Visual Studio 中创建一个 Windows 窗体应用程序,并把所有 必需的程序集 包含到项目的“引用”列表中。
然后,把下列代码添加到 Form.Load 事件处理程序。
C# | 复制代码 |
---|---|
using System; using System.Windows.Forms; using DevExpress.XtraCharts; // ... private void Form1_Load(object sender, EventArgs e) { // Create a new chart. ChartControl lineChart = new ChartControl(); // Create a line series. Series series1 = new Series("Series 1", ViewType.Line); // Add points to it. series1.Points.Add(new SeriesPoint(1, 2)); series1.Points.Add(new SeriesPoint(2, 12)); series1.Points.Add(new SeriesPoint(3, 14)); series1.Points.Add(new SeriesPoint(4, 17)); // Add the series to the chart. lineChart.Series.Add(series1); // Set the numerical argument scale types for the series, // as it is qualitative, by default. series1.ArgumentScaleType = ScaleType.Numerical; // Access the view-type-specific options of the series. ((LineSeriesView)series1.View).LineMarkerOptions.Kind = MarkerKind.Triangle; ((LineSeriesView)series1.View).LineStyle.DashStyle = DashStyle.Dash; // Access the type-specific options of the diagram. ((XYDiagram)lineChart.Diagram).EnableAxisXZooming = true; // Hide the legend (if necessary). lineChart.Legend.Visible = false; // Add a title to the chart (if necessary). lineChart.Titles.Add(new ChartTitle()); lineChart.Titles[0].Text = "A Line Chart"; // Add the chart to the form. lineChart.Dock = DockStyle.Fill; this.Controls.Add(lineChart); } |
Visual Basic | 复制代码 |
---|---|
Imports System Imports System.Windows.Forms Imports DevExpress.XtraCharts ' ... Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs) _ Handles MyBase.Load ' Create a new chart. Dim lineChart As New ChartControl() ' Create a line series. Dim series1 As New Series("Series 1", ViewType.Line) ' Add points to it. series1.Points.Add(New SeriesPoint(1, 2)) series1.Points.Add(New SeriesPoint(2, 12)) series1.Points.Add(New SeriesPoint(3, 14)) series1.Points.Add(New SeriesPoint(4, 17)) ' Add the series to the chart. lineChart.Series.Add(series1) ' Set the numerical argument scale types for the series, ' as it is qualitative, by default. series1.ArgumentScaleType = ScaleType.Numerical ' Access the view-type-specific options of the series. CType(series1.View, LineSeriesView).LineMarkerOptions.Kind = MarkerKind.Triangle CType(series1.View, LineSeriesView).LineStyle.DashStyle = DashStyle.Dash ' Access the type-specific options of the diagram. CType(lineChart.Diagram, XYDiagram).EnableAxisXZooming = True ' Hide the legend (if necessary). lineChart.Legend.Visible = False ' Add a title to the chart (if necessary). lineChart.Titles.Add(New ChartTitle()) lineChart.Titles(0).Text = "A Line Chart" ' Add the chart to the form. lineChart.Dock = DockStyle.Fill Me.Controls.Add(lineChart) End Sub |
Show Me |
---|
在 DevExpress Code Central 数据库中可以找到完整的示例项目,网址是 http://www.devexpress.com/example=E1208。 取决于目标平台类型 (ASP.NET、WinForms 等),可以在线运行本示例,或者下载自动可执行的示例。 |