Scatter Plot Control
Show/Hide Statistics
This page describes how to show and hide statistics that are shown in the
statistics box.
Statistics are at the series level. The scatter plot control of the .Net Analytics package is of the following type:
The series class of the scatter plot is:
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 a Scatter plot series (named
spsSeries in the
examples below):
[Visual Basic]
' Hide statistics
spsSeries.ShowMSE = False
spsSeries.ShowSSE = False
' Show statistic
spsSeries.ShowSSTOU = True
[Visual C#]
// Hide the median of the series in the statistics box
spsSeries.ShowMSE = false;
spsSeries.ShowSSE = false;
// Show statistic
spsSeries.ShowSSTOU = true;
Charts showing the statistics before and after several have been shown and hidden: