Dundas Chart for ASP.NET
FunnelStyle Custom Attribute
See Also Send comments on this topic.
Custom Attributes > FunnelStyle Custom Attribute



Glossary Item Box

Gets or sets the Funnel chart style.

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

' Set the Series FunnelStyle to render as a YIsHeight.
Chart1.Series(0)("FunnelStyle") = "YIsHeight"


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

// Set the Series FunnelStyle to render as a YIsHeight.
Chart1.Series[0]["FunnelStyle"] = "YIsHeight";


Remarks

Gets or sets the Funnel chart style. 

Custom Attribute Summary
Possible Values: YIsWidth - DataPoint Y-value controls the radius of the funnel segment.
YIsHeight - DataPoint Y-value controls the height of the funnel segment.
Default Value: YIsHeight 
2D / 3D Limitations: No
Applies to Chart Element: Series Objects
Applies to Chart Types: Funnel

 

Figure 1: YIsHeight FunnelStyle set shown left, and YIsWidth FunnelStyle set shown right.

See Also

Custom Attributes
Custom Attributes Overview

Chart Types
Funnel Chart

Copyright © 2001 - 2009 Dundas Data Visualization, Inc. and others.