Nevron .NET Vision
Nevron.Chart Namespace / NChartWall Class / BorderStyle Property
Example


In This Topic
    BorderStyle Property (NChartWall)
    In This Topic
    Gets or sets the NStrokeStyle object controlling the stroke style applied to the chart wall border.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Appearance")>
    <System.ComponentModel.DescriptionAttribute("Gets or sets the stroke style applied to the chart wall border")>
    <System.ComponentModel.EditorAttribute(Nevron.Editors.NStrokeStyleTypeEditorNoAutomatic, System.Drawing.Design.UITypeEditor)>
    Public Property BorderStyle As NStrokeStyle
    'Usage
     
    
    Dim instance As NChartWall
    Dim value As NStrokeStyle
     
    instance.BorderStyle = value
     
    value = instance.BorderStyle
    [System.ComponentModel.Category("Appearance")]
    [System.ComponentModel.Description("Gets or sets the stroke style applied to the chart wall border")]
    [System.ComponentModel.Editor(Nevron.Editors.NStrokeStyleTypeEditorNoAutomatic, System.Drawing.Design.UITypeEditor)]
    public NStrokeStyle BorderStyle {get; set;}
    Example
    The following code displays the floor chart wall with red border.
    NChart.Wall(ChartWallType.Floor).BorderStyle.Color = Color.Red
    NChart.Wall(ChartWallType.Floor).BorderStyle.Color = Color.Red;
    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