Dundas Chart for Windows Forms
Funnel3DDrawingStyle Custom Attribute
See Also Send comments on this topic.
Custom Attributes > Funnel3DDrawingStyle Custom Attribute



Glossary Item Box

Gets or sets the Funnel chart 3D drawing style.

Visual Basic Copy Code
Imports Dundas.Charting.WinControl
  ...

' Set the Series Funnel3DDrawingStyle to render with a SquareBase.
Chart1.Series(0)("Funnel3DDrawingStyle") = "SquareBase"

C# Copy Code
using Dundas.Charting.WinControl;
   ...

// Set the Series Funnel3DDrawingStyle to render with a SquareBase.
Chart1.Series[0]["Funnel3DDrawingStyle"] = "SquareBase";

Remarks

Gets or sets the Funnel chart 3D drawing style. For this attribute to have any effect, the property ChartArea.Area3DStyle.Enable3D must be set to true.

Custom Attribute Summary
Possible Values: CircularBase  - Renders the Funnel chart with a Circular base shape.
SquareBase  - Renders the Funnel chart with a Square base shape.
Default Value: CircularBase 
2D / 3D Limitations: 3D Only
Applies to Chart Element: Series Objects
Applies to Chart Types: Funnel

 


Figure 1: CircularBase Funnel3DDrawingStyle.

 


Figure 2: SquareBase Funnel3DDrawingStyle.

See Also

Custom Attributes
Custom Attributes Overview

Chart Types
Funnel Chart

©2009. All Rights Reserved.