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



Glossary Item Box

Gets or sets the Funnel chart data point label placement when the FunnelLabelStyle is set to Inside.

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

' Set the Series FunnelInsideLabelAlignment to Center and Point 4 Top.
Chart1.Series(0)("FunnelLabelStyle") = "Inside"
Chart1.Series(0)("FunnelInsideLabelAlignment") = "Center"
Chart1.Series(0).Points(3)("FunnelInsideLabelAlignment") = "Top"


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

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


Remarks

Gets or sets the Funnel chart data point label placement when the FunnelLabelStyle is set to Inside

Custom Attribute Summary
Possible Values: Center - DataPoint labels are aligned to the center of the funnel segment.
Top - DataPoint labels are aligned to the top of the funnel segment.
Bottom - DataPoint labels are aligned to the bottom of the funnel segment.
Default Value: Center 
2D / 3D Limitations: No
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Funnel

 


Figure 1: Center aligned FunnelInsideLabelAlignment.

 


Figure 2: Top aligned FunnelInsideLabelAlignment.

See Also

Custom Attributes
Custom Attributes Overview

Chart Types
Funnel Chart

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