Nevron .NET Vision
Nevron.Chart Namespace / NAreaSeriesBase Class / Origin Property
Example


In This Topic
    Origin Property (NAreaSeriesBase)
    In This Topic
    Specifies the area origin value.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Options")>
    <System.ComponentModel.DescriptionAttribute("Specifies the custom area origin.")>
    <System.ComponentModel.DefaultValueAttribute(0)>
    Public Property Origin As System.Double
    'Usage
     
    
    Dim instance As NAreaSeriesBase
    Dim value As System.Double
     
    instance.Origin = value
     
    value = instance.Origin
    [System.ComponentModel.Category("Options")]
    [System.ComponentModel.Description("Specifies the custom area origin.")]
    [System.ComponentModel.DefaultValue(0)]
    public System.double Origin {get; set;}
    Remarks
    This property specifies the origin value when the OriginMode is set to CustomOrigin. The default origin value is 0.
    Example
    The following code displays an area with origin value 20.
    area.OriginMode = SeriesOriginMode.CustomOrigin
    area.Origin = 20
    area.OriginMode = SeriesOriginMode.CustomOrigin;
    area.Origin = 20;
    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