Nevron .NET Vision
Nevron.Chart Namespace / NSurfaceSeriesBase Class / DrawFlat Property
Example


In This Topic
    DrawFlat Property
    In This Topic
    Draws the surface in flat mode (contour chart). The PositionMode and PositionValue properties determine the vertical position of the surface.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Contour Chart")>
    <System.ComponentModel.DescriptionAttribute("Draws the surface in flat mode (contour chart).")>
    <System.ComponentModel.DefaultValueAttribute(False)>
    Public Property DrawFlat As System.Boolean
    'Usage
     
    
    Dim instance As NSurfaceSeriesBase
    Dim value As System.Boolean
     
    instance.DrawFlat = value
     
    value = instance.DrawFlat
    [System.ComponentModel.Category("Contour Chart")]
    [System.ComponentModel.Description("Draws the surface in flat mode (contour chart).")]
    [System.ComponentModel.DefaultValue(false)]
    public System.bool DrawFlat {get; set;}
    Example
    The code below shows how to enable the flat mode:
    surface.DrawFlat = True
    surface.DrawFlat = true;
    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