Xceed Chart for WinForms v4.4 Documentation
EdgePercent Property
Example 


Xceed.Chart.Standard.v4.4 Assembly > Xceed.Chart.Standard Namespace > Backplane Class : EdgePercent Property
Controls the edge size of the smooth edge or cut edge rectangle.
Syntax
'Declaration
 
<DescriptionAttribute("Controls the edge size of the smooth edge or cut edge rectangle.")>
<CategoryAttribute("General")>
Public Property EdgePercent As Integer
'Usage
 
Dim instance As Backplane
Dim value As Integer
 
instance.EdgePercent = value
 
value = instance.EdgePercent
[Description("Controls the edge size of the smooth edge or cut edge rectangle.")]
[Category("General")]
public int EdgePercent {get; set;}
Remarks
The Style property must be set to SmoothEdgeRectangle or SmoothEdgeRectangle. The property specifies the percentage of the edge occupied by the smooth edge of cut edge in percents of the backplane width or height depending on which one of them is smaller. The default value is 20%.
Example
The following code snippet modifies the backplane style and edge percent.
Dim backplane As Backplane =  someTextProps.Backplane 
backplane.Style = BackplaneStyle.CutEdgeRectangle
backplane.EdgePercent = 30
Backplane backplane = someTextProps.Backplane;
backplane.Style = BackplaneStyle.CutEdgeRectangle;
backplane.EdgePercent = 30;
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

Backplane Class
Backplane Members