Box and Whisker Plot Control


Edit a Sample

This page describes how to edit a sample of the box and whisker plot. The box and whisker control of the .Net Analytics is the following type:

The first step is to include the necessary namespaces.

Edit a Sample

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

[Visual Basic]
' Edit the value of the ith (2 below) sample
bwPlot.Samples(2).Sample.Value = 4

[Visual C#]
// Edit the value of the ith (2 below) sample
bwPlot.Samples[2].Sample.Value = 4;