Scatter
Unlike Categorical series, ScatterSeries plots its data upon two numerical axes. Scatter series identify the position of each ScatterDataPoint using two numerical values - XValue and YValue for the horizontal and vertical axes respectively, just like in the typical Cartesian coordinate system. Here is how to create two ScatterSeries and populate them manually:
Initial Setup
Figure 1: Initial Setup
ScatterSeries have few important properties:
PointSize: The property defines the size of the ScatterSeries points.
XValueMember: If a DataSource is set, the property determines the name of the field that holds the XValue.
YValueMember: If a DataSource is set, the property determines the name of the field that holds the YValue.
Shape: To change the shape of a series points use the Shape property of the series
Custom Shape
Figure 2: Custom Shape