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



Glossary Item Box

Gets or sets the Funnel chart data point label style.

Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...
   
' Set the Series FunnelLabelStyle to Outside and Point 4 Inside.
Chart1.Series(0)("FunnelLabelStyle") = "Outside"
Chart1.Series(0).Points(3)("FunnelLabelStyle") = "Inside"


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

// Set the Series FunnelLabelStyle to Outside and Point 4 Inside.
Chart1.Series[0]["FunnelLabelStyle"] = "Outside";
Chart1.Series[0].Points[3]["FunnelLabelStyle"] = "Inside";


Remarks

If the label is not set to Disabled, then the attributes FunnelInsideLabelAlignment and FunnelOutsideLabelPlacement are used to specify additional positioning rules. 

Custom Attribute Summary
Possible Values: Inside  - DataPoint label is drawn inside the funnel segment.
Outside - DataPoint label is drawn outside and next to the funnel segment.
OutsideInColumn - DataPoint is drawn outside the funnel segment with all labels aligned.
Disabled  - DataPoint labels are disabled.
Default Value: OutsideInColumn 
2D / 3D Limitations: No
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Funnel

 


Figure 1: OutsideInColumn FunnelLabelStyle.

 


Figure 2: Outside FunnelLabelStyle.

See Also

Custom Attributes
Custom Attributes Overview

Chart Types
Funnel Chart

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