Nevron .NET Vision
Nevron.Chart Namespace / NBoxAndWhiskersDataPoint Class / NBoxAndWhiskersDataPoint Constructor / NBoxAndWhiskersDataPoint Constructor(NDataSeriesDouble,Boolean,Boolean)
data series of double values used to initialize the box and whiskers data point
A boolean flag that indicates whether the average value should be calculated
A boolean flag that indicates whether the outlier values should be initialized


In This Topic
    NBoxAndWhiskersDataPoint Constructor(NDataSeriesDouble,Boolean,Boolean)
    In This Topic
    Creates a new box and whiskers data point and initializes it from a data series of double values.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal data As NDataSeriesDouble, _
       ByVal calculateAverage As System.Boolean, _
       ByVal calculateOutliers As System.Boolean _
    )
    'Usage
     
    
    Dim data As NDataSeriesDouble
    Dim calculateAverage As System.Boolean
    Dim calculateOutliers As System.Boolean
     
    Dim instance As New NBoxAndWhiskersDataPoint(data, calculateAverage, calculateOutliers)
    public NBoxAndWhiskersDataPoint( 
       NDataSeriesDouble data,
       System.bool calculateAverage,
       System.bool calculateOutliers
    )

    Parameters

    data
    data series of double values used to initialize the box and whiskers data point
    calculateAverage
    A boolean flag that indicates whether the average value should be calculated
    calculateOutliers
    A boolean flag that indicates whether the outlier values should be initialized
    Remarks
    This constructor automatically calculates the data point values based on the distribution of the values in the "data" parameter.
    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