ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ChartAxis<T> Class / LabelAngle Property






In This Topic
    LabelAngle Property (ChartAxis<T>)
    In This Topic
    Gets or sets the rotation angle of axis labels. The angle is measured in degrees with valid values ranging from -90 to 90.
    Syntax
    'Declaration
     
    
    Public Property LabelAngle As System.Nullable(Of Integer)
    'Usage
     
    
    Dim instance As ChartAxis(Of T)
    Dim value As System.Nullable(Of Integer)
     
    instance.LabelAngle = value
     
    value = instance.LabelAngle
    public System.Nullable<int> LabelAngle {get; set;}
    public read-write property LabelAngle: System.Nullable; 
    public function get,set LabelAngle : System.Nullable
    public: __property System.Nullable<int> get_LabelAngle();
    public: __property void set_LabelAngle( 
       System.Nullable<int> value
    );
    public:
    property System.Nullable<int> LabelAngle {
       System.Nullable<int> get();
       void set (    System.Nullable<int> value);
    }
    See Also