ActiveReports for .NET 3 Online Help Request technical support
Area3D Charts
User Guide > Concepts > Charts > Chart Types > 3D Charts > Area3D Charts

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.

 

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
Imports DataDynamics.ActiveReports.Chart.Graphics

Me.ChartControl1.Series(0).Properties("LineBackdrop") = New Chart.Graphics.Backdrop(Color.Red, CType(150, _
  Byte))
Me.ChartControl1.Series(0).Properties("Thickness") = 5.0F
Me.ChartControl1.Series(0).Properties("Width") = 30.0F
 
// C#
using DataDynamics.ActiveReports.Chart.Graphics

this.chartControl1.Series[0].Properties["LineBackdrop"] = new Chart.Graphics.Backdrop(Color.Red, ((System. _
  Byte)(150)));
this.chartControl1.Series[0].Properties["Thickness"] = 5f;
this.chartControl1.Series[0].Properties["Width"] = 30f;
©2009. All Rights Reserved.