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



Glossary Item Box

Gets or sets the color of the radial and horizontal segments of the callout lines.
Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set the Series PieLineColor to Red and Blue for Point 3.
Chart1.Series(0)("PieLineColor") = "Red"
Chart1.Series(0).Points(3)("PieLineColor") = "Blue"


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

// Set the Series PieLineColor to Red and Blue for Point 3.
Chart1.Series[0]["PieLineColor"] = "Red";
Chart1.Series[0].Points[3]["PieLineColor"] = "Blue";


                    

Remarks

This attribute is only applicable to the Pie or Doughnut chart when the PieLabelStyle is set to Outside. 

Custom Attribute Summary
Possible Values: Any named Color, ARGB or RGB value. 
Default Value: Color.Black
2D / 3D Limitations: No
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Pie, Doughnut

See Also

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