Glossary Item Box
Use a 3D area chart to compare trends in two or more data series over a period of time or in specific categories, allowing the data to be viewed side by side.
Note: To see a chart in three dimensions, the ProjectionType must be Orthogonal. The ProjectionType is found in the ChartArea Collection dialog in the Projection section.
Chart Information | |
---|---|
# of Y values/data point | 1 |
# of Series | 1 or more |
Marker Support | Series or Data Point |
Custom Properties | LineBackdrop gets or sets the backdrop information for the 3D line. Thickness gets or sets the thickness of the 3D line. Width gets or sets the width of the 3D line. |
Below is an example of setting the custom chart properties at run time for a 3D area chart as shown for the first series in the image above.
' Visual Basic Me.ChartControl1.Series(0).Properties("LineBackdrop") = New Backdrop(Color.Red, CType(150, _ Byte)) Me.ChartControl1.Series(0).Properties("Thickness") = 5.0F Me.ChartControl1.Series(0).Properties("Width") = 30.0F // C# this.ChartControl1.Series[0].Properties["LineBackdrop"] = new Backdrop(Color.Red, ((System. _ Byte)(150))); this.ChartControl1.Series[0].Properties["Thickness"] = 5f; this.ChartControl1.Series[0].Properties["Width"] = 30f;
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.