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


In This Topic
    Width Property (NChartWall)
    In This Topic
    Specifies the width of the chart wall.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("General")>
    <System.ComponentModel.DescriptionAttribute("Specifies the width of the chart wall")>
    <System.ComponentModel.DefaultValueAttribute(1)>
    <System.Xml.Serialization.XmlAttributeAttribute()>
    Public Property Width As System.Single
    'Usage
     
    
    Dim instance As NChartWall
    Dim value As System.Single
     
    instance.Width = value
     
    value = instance.Width
    [System.ComponentModel.Category("General")]
    [System.ComponentModel.Description("Specifies the width of the chart wall")]
    [System.ComponentModel.DefaultValue(1)]
    [System.Xml.Serialization.XmlAttribute()]
    public System.float Width {get; set;}
    Remarks
    By default the width is set to 1.0.
    Example
    The following code increases the width of the floor wall.
    NChart.Wall(ChartWallType.Floor).Width = 3.5F
    NChart.Wall(ChartWallType.Floor).Width = 3.5f;
    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