简要说明
百分比堆积面积图 (100% 堆积面积图) 是由 FullStackedAreaSeriesView 对象来表示的,此对象属于 面积系列视图。 这种视图把系列显示为图象上的面积,每个数据点的取值都与所有其他对应数据点取值相堆积。 在这种情况下,区域的高度始终是图表图象的全部高度 (即 1)。 这种视图用于比较相同点参数的多个系列的百分比取值。
在下面的插图中显示了一个百分比堆积面积图。 注意,这种图表类型基于 XYDiagram,因此可以被旋转,从而垂直地或水平地显示图表。
注意 |
---|
百分比堆积面积图可以显示包含正值或负值数据点的系列。 但是,有正值的系列只能与其他包含正值的系列相堆积; 有负值的系列与其他包含负值的系列相堆积。 注意,如果系列同时包含正值和负值数据点,那么它被作为有正值的系列进行处理,而它的所有负值都被视为零。 |
图表类型特征
下表列出了这种图表类型的主要特征。
特征 |
取值 |
---|---|
系列视图类型 | FullStackedAreaSeriesView |
图象类型 | 2D- XYDiagram |
每个数据点的参数个数 | 1 |
每个数据点的取值个数 | 1 |
注意 |
---|
要获得关于哪些图表类型可以与 百分比堆积面积图 组合使用的信息,请参阅 组合使用不同的系列视图 文档。 |
示例
下面的示例演示了在运行时刻如何创建 ChartControl (拥有两个 FullStackedAreaSeriesView 类型的系列),并把图表添加到窗体中。 在继续本示例之前,首先要在 Visual Studio 中创建一个 Windows 窗体应用程序,并把所有 必需的程序集 包含到项目的“引用”列表中。
然后,把下列代码添加到 Form.Load 事件处理程序。
C# | 复制代码 |
---|---|
using DevExpress.XtraCharts; // ... private void Form1_Load(object sender, EventArgs e) { // Create a new chart. ChartControl FullStackedAreaChart = new ChartControl(); // Create two full-stacked area series. Series series1 = new Series("Series 1", ViewType.FullStackedArea); Series series2 = new Series("Series 2", ViewType.FullStackedArea); // Add points to them. series1.Points.Add(new SeriesPoint(1, 10)); series1.Points.Add(new SeriesPoint(2, 12)); series1.Points.Add(new SeriesPoint(3, 14)); series1.Points.Add(new SeriesPoint(4, 17)); series2.Points.Add(new SeriesPoint(1, 15)); series2.Points.Add(new SeriesPoint(2, 18)); series2.Points.Add(new SeriesPoint(3, 25)); series2.Points.Add(new SeriesPoint(4, 33)); // Add both series to the chart. FullStackedAreaChart.Series.AddRange(new Series[] { series1, series2 }); // Set the numerical argument scale types for the series, // as it is qualitative, by default. series1.ArgumentScaleType = ScaleType.Numerical; series2.ArgumentScaleType = ScaleType.Numerical; // Access the view-type-specific options of the series. ((FullStackedAreaSeriesView)series1.View).Transparency = 50; ((FullStackedAreaSeriesView)series2.View).Transparency = 50; // Access the type-specific options of the diagram. ((XYDiagram)FullStackedAreaChart.Diagram).EnableAxisXZooming = true; // Hide the legend (if necessary). FullStackedAreaChart.Legend.Visible = false; // Add the chart to the form. FullStackedAreaChart.Dock = DockStyle.Fill; this.Controls.Add(FullStackedAreaChart); } |
Visual Basic | 复制代码 |
---|---|
Imports DevExpress.XtraCharts ' ... Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) _ Handles MyBase.Load ' Create a new chart. Dim FullStackedAreaChart As New ChartControl() ' Create two full-stacked area series. Dim series1 As New Series("Series 1", ViewType.FullStackedArea) Dim series2 As New Series("Series 2", ViewType.FullStackedArea) ' Add points to them. series1.Points.Add(New SeriesPoint(1, 10)) series1.Points.Add(New SeriesPoint(2, 12)) series1.Points.Add(New SeriesPoint(3, 14)) series1.Points.Add(New SeriesPoint(4, 17)) series2.Points.Add(New SeriesPoint(1, 15)) series2.Points.Add(New SeriesPoint(2, 18)) series2.Points.Add(New SeriesPoint(3, 25)) series2.Points.Add(New SeriesPoint(4, 33)) ' Add both series to the chart. FullStackedAreaChart.Series.AddRange(New Series() { series1, series2 }) ' Set the numerical argument scale types for the series, ' as it is qualitative, by default. series1.ArgumentScaleType = ScaleType.Numerical series2.ArgumentScaleType = ScaleType.Numerical ' Access the view-type-specific options of the series. CType(series1.View, FullStackedAreaSeriesView).Transparency = 50 CType(series2.View, FullStackedAreaSeriesView).Transparency = 50 ' Access the type-specific options of the diagram. CType(FullStackedAreaChart.Diagram, XYDiagram).EnableAxisXZooming = True ' Hide the legend (if necessary). FullStackedAreaChart.Legend.Visible = False ' Add the chart to the form. FullStackedAreaChart.Dock = DockStyle.Fill Me.Controls.Add(FullStackedAreaChart) End Sub |
Show Me |
---|
在 DevExpress Code Central 数据库中可以找到完整的示例项目,网址是 http://www.devexpress.com/example=E1207。 取决于目标平台类型 (ASP.NET、WinForms 等),可以在线运行本示例,或者下载自动可执行的示例。 |