Nevron .NET Vision
Nevron.Chart Namespace / NDataSeriesDouble Class / FillRandomRange Method
random number generator
count of random items
the random values will be greater or equal than this value
the random values will be smaller or equal than this value


In This Topic
    FillRandomRange Method
    In This Topic
    Fills a data series with itemCount random double values in the range defined by the "from" and "to" parameters.
    Syntax
    'Declaration
     
    
    Public Sub FillRandomRange( _
       ByVal random As System.Random, _
       ByVal itemCount As System.Integer, _
       ByVal from As System.Double, _
       ByVal to As System.Double _
    ) 
    'Usage
     
    
    Dim instance As NDataSeriesDouble
    Dim random As System.Random
    Dim itemCount As System.Integer
    Dim from As System.Double
    Dim to As System.Double
     
    instance.FillRandomRange(random, itemCount, from, to)
    public void FillRandomRange( 
       System.Random random,
       System.int itemCount,
       System.double from,
       System.double to
    )

    Parameters

    random
    random number generator
    itemCount
    count of random items
    from
    the random values will be greater or equal than this value
    to
    the random values will be smaller or equal than this value
    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