简要说明
极坐标折线图 是由 PolarLineSeriesView 对象来表示的,此对象属于 极坐标系列视图。 当需要以角度为基础在圆形图象上显示几个系列的趋势、并比较它们的相同点参数的取值时,这种视图是有用的。 注意,尽管这些图表通常都有一个圆形形状,但是也可以被显示为多边形。 这是通过 RadarDiagram.DrawingStyle 属性进行控制的。
在下面的插图中显示了一个极坐标折线图。
图表类型特征
下表列出了这种图表类型的主要特征。
特征 |
取值 |
---|---|
系列视图类型 | PolarLineSeriesView |
图象类型 | PolarDiagram |
每个数据点的参数个数 | 1 |
每个数据点的取值个数 | 1 |
注意 |
---|
要获得关于哪些图表类型可以与 极坐标折线图 组合使用的信息,请参阅 组合使用不同的系列视图 文档。 |
示例
下面的示例演示了在运行时刻如何创建 ChartControl (拥有一个 PolarLineSeriesView 类型的系列),设置它的常规属性,并把图表添加到窗体中。 在继续本示例之前,首先要在 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 polarLineChart = new ChartControl(); // Add a polar series to it. Series series1 = new Series("Series 1", ViewType.PolarLine); // Populate the series with points. series1.Points.Add(new SeriesPoint(0, 90)); series1.Points.Add(new SeriesPoint(90, 70)); series1.Points.Add(new SeriesPoint(180, 50)); series1.Points.Add(new SeriesPoint(270, 100)); // Add the series to the chart. polarLineChart.Series.Add(series1); // Adjust the series options. series1.Label.Visible = false; // Flip the diagram (if necessary). ((PolarDiagram)polarLineChart.Diagram).StartAngleInDegrees = 180; ((PolarDiagram)polarLineChart.Diagram).RotationDirection = RadarDiagramRotationDirection.Counterclockwise; // Add a title to the chart and hide the legend. ChartTitle chartTitle1 = new ChartTitle(); chartTitle1.Text = "Polar Line Chart"; polarLineChart.Titles.Add(chartTitle1); polarLineChart.Legend.Visible = false; // Add the chart to the form. polarLineChart.Dock = DockStyle.Fill; this.Controls.Add(polarLineChart); } |
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 polarLineChart As New ChartControl() ' Add a polar series to it. Dim series1 As New Series("Series 1", ViewType.PolarLine) ' Populate the series with points. series1.Points.Add(New SeriesPoint(0, 90)) series1.Points.Add(New SeriesPoint(90, 70)) series1.Points.Add(New SeriesPoint(180, 50)) series1.Points.Add(New SeriesPoint(270, 100)) ' Add the series to the chart. polarLineChart.Series.Add(series1) ' Adjust the series options. series1.Label.Visible = False ' Flip the diagram (if necessary). CType(polarLineChart.Diagram, PolarDiagram).StartAngleInDegrees = 180 CType(polarLineChart.Diagram, PolarDiagram).RotationDirection = _ RadarDiagramRotationDirection.Counterclockwise ' Add a title to the chart and hide the legend. Dim chartTitle1 As New ChartTitle() chartTitle1.Text = "Polar Line Chart" polarLineChart.Titles.Add(chartTitle1) polarLineChart.Legend.Visible = False ' Add the chart to the form. polarLineChart.Dock = DockStyle.Fill Me.Controls.Add(polarLineChart) End Sub |
Show Me |
---|
在 DevExpress Code Central 数据库中可以找到完整的示例项目,网址是 http://www.devexpress.com/example=E1056。 取决于目标平台类型 (ASP.NET、WinForms 等),可以在线运行本示例,或者下载自动可执行的示例。 |