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



Glossary Item Box

Gets or sets the Pyramid chart data point label placement when the PyramidLabelStyle is set to Outside or OutsideInColumn.

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

' Set the Series PyramidOutsideLabelPlacement to Right and Point 4 Left.
Chart1.Series(0)("PyramidLabelStyle") = "Outside"
Chart1.Series(0)("PyramidOutsideLabelPlacement") = "Right"
Chart1.Series(0).Points(3)("PyramidOutsideLabelPlacement") = "Left"


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

// Set the Series PyramidOutsideLabelPlacement to Right and Point 4 Left.
Chart1.Series[0]["PyramidLabelStyle"] = "Outside";
Chart1.Series[0]["PyramidOutsideLabelPlacement"] = "Right";
Chart1.Series[0].Points[3]["PyramidOutsideLabelPlacement"] = "Left";


Remarks

Gets or sets the Pyramid chart data point label placement when the PyramidLabelStyle is set to Outside or OutsideInColumn

Custom Attribute Summary
Possible Values: Right - DataPoint labels are drawn to the right of the Pyramid segment.
Left - DataPoint labels are drawn to the left of the Pyramid segment.
Default Value: Right 
2D / 3D Limitations: No
Applies to Chart Elements: Series and DataPoint Objects
Applies to Chart Types: Pyramid

 

Figure 1: PyramidOutsideLabelPlacement set to Right shown left, and set to Left shown right.

See Also

Custom Attributes
Custom Attributes Overview

Chart Types
Pyramid Chart

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