Time Series Controls


Show/Hide Statistics

This page describes how to show and hide statistics that are shown in the statistics box. Statistics may be shown at either the series or limit range level. The time series controls of the .Net Analytics package include the following:

The series classes of the respective charts are:

Multiple/split limits are implemented in the charts using the following type:

The first step is to include the necessary namespaces for the controls and add a new series.

Show and Hide Statistics

Below, we will hide some statistics and show others of an Individuals series (named isSeries in the examples below) and the first limit range of the series. The process is similar for the other charts:

[Visual Basic]
' Hide the median of the series in the statistics box
isSeries.ShowMedian = False

' Show the anderson-darling and skewness calculations of the limit range in the statistics box
isSeries.LimitRanges[0].ShowAndersonDarling = True
isSeries.LimitRanges[0].ShowSkewness = True

[Visual C#]
// Hide the median of the series in the statistics box
isSeries.ShowMedian = false;

// Show the anderson-darling and skewness calculations of the limit range in the statistics box
isSeries.LimitRanges[0].ShowAndersonDarling = true;
isSeries.LimitRanges[0].ShowSkewness = true;

Charts showing the statistics before and after several have been shown and hidden:

Individuals chart with statistics Individuals chart with statistics