Xceed Chart for WinForms v4.4 Documentation
FrameStyle Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > SurfaceSeriesBase Class : FrameStyle Property
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
 
<DefaultValueAttribute()>

<CategoryAttribute("Appearance")>

<DescriptionAttribute("Controls the surface frame style.")>

Public Property FrameStyle As SurfaceFrameStyle
'Usage
 
Dim instance As SurfaceSeriesBase

Dim value As SurfaceFrameStyle

 

instance.FrameStyle = value

 

value = instance.FrameStyle
[DefaultValue()]

[Category("Appearance")]

[Description("Controls the surface frame style.")]

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

Reference

SurfaceSeriesBase Class
SurfaceSeriesBase Members