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

Glossary Item Box

Use a 3D bar graph to compare values of items across categories, allowing the data to be viewed conveniently in a 3D format. A stacked bar graph is a bar graph with two or more data series stacked on top of each other. Use this graph to show how each value contributes to a total.

 

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

 

Below is an example of setting the custom chart properties at run time for a StackedBar3D chart.

' Visual Basic
Me.ChartControl1.Series(0).Properties("Gap") = 100.0F
 
// C#
this.chartControl1.Series[0].Properties["Gap"] = 100f;
©2009. All Rights Reserved.