Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / AreaSeries Class / Origin Property
Example


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