Scatter Plot Control
Edit a Series Appearance
This page describes how to edit the appearance of the points for a scatter plot series. The scatter plot control of the .Net Analytics package is of the following type:
The series class of the scatter plot is:
A series includes a marker for the appearance of its points. The marker is of the following type:
Additionally, the following marker properties are visible at the series level:
The first step is to include the necessary namespaces
for the controls and add new series.
Change Point Appearance
Below, we will change the appearance of the points for a Scatter plot series (named
spsSeries in the examples below):
[Visual Basic]
' Change the points
for the series
spsSeries.PointColor = Color.Blue
spsSeries.PointSize = 6
spsSeries.PointMarker.Type = SEI.Charts.Charts2D.MarkerTypes.Box
[Visual C#]
// Change the points
for the series
spsSeries.PointColor = Color.Blue;
spsSeries.PointSize = 6;
spsSeries.PointMarker.Type = SEI.Charts.Charts2D.MarkerTypes.Box;
Charts showing before and after the points for the series have been edited: