Glossary Item Box

ActiveReports for .NET 2 Online Help Send feedback to Data Dynamics

Horizontal Bar 3D Charts

Use a horizontal 3D bar chart to compare values of items across categories, allowing the data to be viewed conveniently in a 3D format with the axes reversed.

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 Gap gets or sets the space between the bars of each X axis value.
PointBarDepth Gets or sets the thickness of the 3D bar.

 

Below is an example of setting the custom chart properties at run time for a 3D bar chart as shown above.

' Visual Basic
Me.ChartControl1.Series(0).Properties("Gap") = 65.0F
Me.ChartControl1.Series(0).Properties("PointBarDepth") = 100 
// C#
this.ChartControl1.Series[0].Properties["Gap"] = 65f;
this.ChartControl1.Series[0].Properties["PointBarDepth"] = 100;

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.