Nevron .NET Vision
Nevron.Chart Namespace / NPieChart Class / BeginAngle Property
Example


In This Topic
    BeginAngle Property (NPieChart)
    In This Topic
    Controls the begin angle of the pie segments.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Options")>
    <System.ComponentModel.DescriptionAttribute("Controls the begin angle of the pie segments.")>
    <System.ComponentModel.DefaultValueAttribute(0)>
    Public Property BeginAngle As System.Single
    'Usage
     
    
    Dim instance As NPieChart
    Dim value As System.Single
     
    instance.BeginAngle = value
     
    value = instance.BeginAngle
    [System.ComponentModel.Category("Options")]
    [System.ComponentModel.Description("Controls the begin angle of the pie segments.")]
    [System.ComponentModel.DefaultValue(0)]
    public System.float BeginAngle {get; set;}
    Remarks
    By default set to 0.
    Example
    The following code will instruct the pie series to display the first pie from 90 degrees.
    pieSeries.BeginAngle = 90
    pieSeries.BeginAngle = 90;
    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