Nevron .NET Vision
Nevron.Chart Namespace / NPointSeries Class / PointShape Property
Example


In This Topic
    PointShape Property (NPointSeries)
    In This Topic
    Controls the point shape
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Options")>
    <System.ComponentModel.DescriptionAttribute("Controls the point style.")>
    <System.ComponentModel.DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    Public Property PointShape As PointShape
    'Usage
     
    
    Dim instance As NPointSeries
    Dim value As PointShape
     
    instance.PointShape = value
     
    value = instance.PointShape
    [System.ComponentModel.Category("Options")]
    [System.ComponentModel.Description("Controls the point style.")]
    [System.ComponentModel.DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public PointShape PointShape {get; set;}
    Remarks
    By default set to Bar
    Example
    The following code changes the shape of the points.
    point.PointShape = PointShape.Sphere
    point.PointShape = PointShape.Sphere;
    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