Version

Scatter Point Series

This topic explains, with code examples, how to use the ScatterSeries in the UltraDataChart™ control. Some important conceptual information is provided as well.

In This Topic

This topic contains the following sections:

Introduction

The ScatterSeries belongs to a family of Scatter Series that use the Cartesian (x, y) coordinate system to plot data. This series displays the data as a collection of markers, each having a pair of numeric X/Y values that determines its location in the Cartesian coordinate system.

Scatter Series draw attention to uneven intervals or clusters of data. They can highlight the deviation of collected data from predicted results and they are often used to plot scientific and statistical data. The ScatterSeries organizes and plots data chronologically (even if the data is not in chronological order before binding) on X-Axis and Y-Axis. The following sections list important conceptual and task-based information on how to use the ScatterSeries and its features.

Series Preview

xamDataChart Scatter Series 02.png

Figure 1: Sample implementation of the ScatterLineSeries

Series Appearance

The ScatterLineSeries has the following properties that you can use to customize appearance:

Property Name Property Type Description

double

This property specifies the thickness of marker’s outline.

This property specifies shape of markers rendered at location of data points. Defaults to Automatic which will be resolved to to one of values of MarkerType enum based on index of the series in UltraDataChart. For example, Circle markers for 1st series, Diamond markers for 2nd series, and so on.

Brush

This property specifies the outline color of markers.

Brush

This property specifies the fill color of markers.

Data Binding

The ScatterSeries uses the DataSource property to bind any data object that implements the IEnumerable interface (e.g. List, Collection, Queue, Stack). However, each data item in this object must have two numeric data columns (for X and Y values to position a bubble in the Cartesian coordinate system). These data columns are mapped using XMemberPath and YMemberPath properties.

An example of object that meets the criteria listed above is the BubbleDataSource which you can download use it in your project.

Code Example

This code snippet below demonstrates how to bind sample bubble data to the ScatterSeries.

In C#:

var bubbleDataSample = new BubbleDataSource();
var xAxis = new NumericXAxis();
var yAxis = new NumericYAxis();

var series = new ScatterSeries();
series.XAxis = xAxis;
series.YAxis = yAxis;
series.XMemberPath = "X";
series.YMemberPath = "Y";
series.DataSource = bubbleDataSample;
DataChart.Axes.Add(xAxis);
DataChart.Axes.Add(yAxis);
DataChart.Series.Add(series);

In Visual Basic:

Dim data As New BubbleDataSource()
Dim xAxis As New NumericXAxis()
Dim yAxis As New NumericYAxis()

Dim series As New ScatterSeries()
series.DataSource = data
series.XMemberPath = "X"
series.YMemberPath = "Y"
series.XAxis = xAxis
series.YAxis = yAxis
Dim chart As New UltraDataChart()
chart.Axes.Add(xAxis)
chart.Axes.Add(yAxis)
chart.Series.Add(series)