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

Glossary Item Box

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.

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;
©2009. All Rights Reserved.