Glossary Item Box
A StackedBar3D100Pct chart is a bar chart with two or more data series stacked one on top the other three dimensionally to sum up to 100%. Use this chart to show how each value contributes to a total with the relative size of each series representing its contribution to the total.
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 |
Below is an example of setting the custom chart properties at run time for a StackedBar3D100Pct chart.
' Visual Basic Me.ChartControl1.Series(0).Properties("Gap") = 100.0F // C# this.ChartControl1.Series[0].Properties["Gap"] = 100f;
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.