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


In This Topic
    FrameStyle Property
    In This Topic
    Controls the surface frame style. Supported values are: SurfaceFrameStyle.None - no frame at all SurfaceFrameStyle.Mesh - frame connecting the adjacent data points SurfaceFrameStyle.Contour - contour lines at specific surface elevations SurfaceFrameStyle.MeshContour - mixed mesh and contour frame SurfaceFrameStyle.Dots - dots at the data points
    Syntax
    'Declaration
     
    <CategoryAttribute("Appearance")>
    <DescriptionAttribute("Controls the surface frame style.")>
    <DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    Public Property FrameStyle As SurfaceFrameStyle
    'Usage
     
    Dim instance As SurfaceSeriesBase
    Dim value As SurfaceFrameStyle
     
    instance.FrameStyle = value
     
    value = instance.FrameStyle
    [Category("Appearance")]
    [Description("Controls the surface frame style.")]
    [DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public SurfaceFrameStyle FrameStyle {get; set;}
    Example
    The following code changes the frame style to Dots:
    surface.FrameStyle = SurfaceFrameStyle.Dots
    surface.FrameStyle = SurfaceFrameStyle.Dots;
    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