Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / SurfaceSeriesBase Class / FrameLine Property
Example


In This Topic
    FrameLine Property
    In This Topic
    Controls the appearance of the surface frame lines and dots.
    Syntax
    'Declaration
     
    <CategoryAttribute("Appearance")>
    <DescriptionAttribute("Controls the appearance of the surface frame lines and dots.")>
    Public Property FrameLine As LineProperties
    'Usage
     
    Dim instance As SurfaceSeriesBase
    Dim value As LineProperties
     
    instance.FrameLine = value
     
    value = instance.FrameLine
    [Category("Appearance")]
    [Description("Controls the appearance of the surface frame lines and dots.")]
    public LineProperties FrameLine {get; set;}
    Remarks
    When the PaletteFrame property is set to true, the frame lines are colored automatically with palette-defined colors. Otherwise the color of the lines is defined by the Color property of the FrameLine object.
    Example
    The following code set the width of the frame lines to 2:
    surface.FrameLine.Width = 2
    surface.FrameLine.Width = 2;
    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