BoxLowerPercentile Property
The BoxLowerPercentile property returns or sets the percentile edges of the box plot by specifying the lower limit. Returns a Double.
Syntax
object.BoxLowerPercentile
object.BoxLowerPercentile = BoxLowerPercentile
Parameter | Type | Description |
BoxLowerPercentile | Double | required, value between 0 - 50, specifies which percentiles are used for the box edges by setting the lower percentile |
Remarks
Set BoxEdgeMethod to grfBEMPercentile to use the BoxLowerPercentile property.
Example 1
This example shows how to return the box edge lower percentile.
Debug.Print AutoBoxPlot.BoxLowerPercentile
Example 2
This example shows how to set the lower and upper box edges to the 15th and 85th percentiles.
AutoBoxPlot.BoxLowerPercentile = 15
Used by: AutoBoxPlot object