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


In This Topic
    PointShape Property (NMarkerStyle)
    In This Topic
    Defines the style of the data point markers
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("General")>
    <System.ComponentModel.DescriptionAttribute("Defines the style of the data point markers")>
    <System.ComponentModel.DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    Public Property PointShape As PointShape
    'Usage
     
    
    Dim instance As NMarkerStyle
    Dim value As PointShape
     
    instance.PointShape = value
     
    value = instance.PointShape
    [System.ComponentModel.Category("General")]
    [System.ComponentModel.Description("Defines the style of the data point markers")]
    [System.ComponentModel.DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public PointShape PointShape {get; set;}
    Remarks
    By default set to Bar
    Example
    The following code displays a line series with sphere marks
    line.MarkerStyle.Visible = True
    line.MarkerStyle.PointShape = PointShape.Sphere
    line.MarkerStyle.Visible = true;
    line.MarkerStyle.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