ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rendering Assembly / GrapeCity.ActiveReports.Rendering.Components.Sparkline Namespace / Range Class / Range Constructor
The lower bound of the range.
The upper bound of the range.
The fill style used to draw the range.

In This Topic
    Range Constructor
    In This Topic
    Initializes a new instance of the Range class with the specified lower and upper bounds and fill style.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal lowValue As Double, _
       ByVal highValue As Double, _
       ByVal fillStyle As FillStyle _
    )
    public Range( 
       double lowValue,
       double highValue,
       FillStyle fillStyle
    )

    Parameters

    lowValue
    The lower bound of the range.
    highValue
    The upper bound of the range.
    fillStyle
    The fill style used to draw the range.
    Exceptions
    ExceptionDescription
    Thrown when fillStyle is null.
    See Also