BoxUpperPercentile Property

The BoxUpperPercentile property returns or sets the percentile edges of the box plot by specifying the upper limit. Returns a Double.

Syntax

object.BoxUpperPercentile

object.BoxUpperPercentile = BoxUpperPercentile

 

Parameter Type Description
BoxUpperPercentile Double required, value between 50 - 100, specifies which percentiles are used for the box edges by setting the upper percentile

 

Remarks

Set BoxEdgeMethod to grfBEMPercentile to use the BoxUpperPercentile property.

Example 1

This example shows how to return the box edge upper percentile.

Debug.Print AutoBoxPlot.BoxUpperPercentile

Example 2

This example shows how to set the lower and upper box edges to the 15th and 85th percentiles.

AutoBoxPlot.BoxUpperPercentile = 85

 

Used by: AutoBoxPlot object