Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / ChartWall Class / Width Property
Example


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