Xceed Chart for WinForms v4.4 Documentation
PieBorder Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > PieSeries Class : PieBorder Property
Controls the appearance of the pies borders.
Syntax
'Declaration
 
<CategoryAttribute("Series Appearance")>

<DescriptionAttribute("Controls the appearance of the pies borders.")>

Public Property PieBorder As LineProperties
'Usage
 
Dim instance As PieSeries

Dim value As LineProperties

 

instance.PieBorder = value

 

value = instance.PieBorder
[Category("Series Appearance")]

[Description("Controls the appearance of the pies borders.")]

public LineProperties PieBorder {get; set;}
Remarks
All pies borders are controlled with this object if the LineMode property of the associated Appearance object is set to Series.
Example
The following code displays a pie series with blue color borders.
pie.Appearance.LineMode = AppearanceLineMode.Series

pie.PieBorder.Color = Color.Blue
pie.Appearance.LineMode = AppearanceLineMode.Series;

pie.PieBorder.Color = Color.Blue;
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

PieSeries Class
PieSeries Members