Box and Whisker Plot Control


Display Outliers

This page describes how to display outliers for the box and whisker plot. The box and whisker control of the .Net Analytics is the following type:

The properties associated with displaying the outliers are:

  • DrawOutliersInsideFence
  • DrawOutliersOutsideFence

The first step is to include the necessary namespaces.

Show the Outliers

Below, we will show the outliers of a box and whisker plot (named bwPlot in the examples below):

[Visual Basic]
' Show the outliers
bwPlot.DrawOutliersInsideFence = True
bwPlot.DrawOutliersOutsideFence = True

[Visual C#]
// Show the outliers
bwPlot.DrawOutliersInsideFence = true;
bwPlot.DrawOutliersOutsideFence = true;