Skip to main content

The Bubble 3D Chart Type

tip

Examples for the Scatter/Bubble 3D Chart can be found in the SciChart.js Demo app which can be viewed on our website, or downloaded from SciChart.Js.Examples Github Repository

3D Bubble Charts are provided by theย ScatterRenderableSeries3D๐Ÿ“˜ type. This draws a single PointMarker at an X,Y,Z location in the 3D world with a per-point scaling factor.ย Charts can be static or dynamic, and updated in real-time if required.

Above: The JavaScript 3D Bubble Chart example from the SciChart.js Demo showing how to create 3D Bubble/Scatter charts with variable size and color of points.

Theย ScatterRenderableSeries3D๐Ÿ“˜ allows creation of 3D Bubble charts and supports multiple pointmarkers, including:

3D Marker Typesโ€‹

Fast 2D Marker typesโ€‹

Declaring a 3D Bubble Series with custom Sizes & Colorsโ€‹

To declare a 3D Bubble Series with individual sizes & colors, use the following code.

// returns data in arrays of numbers e.g. xValues = [0,1,2,3,4], yValues = [0,1,2,3,4], zValues = [0,1,2,3,4]
const { xValues, yValues, zValues } = generateData();

const colors = ["#EC0F6C", "#F48420", "#DC7969", "#67BDAF", "#50C7E0", "#264B93", "#14233C"];

// Metadata in scichart.js 3D overrides the color of a scatter point. It can also hold additional optional properties
// Below we format the xValues array into a metadata array, where each point is colored individually
const metadata = [];
for (let i = 0; i < xValues.length; i++) {
const { x, y, z } = { x: xValues[i], y: yValues[i], z: zValues[i] };
// Compute a scale factor based on distance from origin
const distanceFromOrigin = Math.sqrt(x * x + y * y + z * z);
const scaleFactor = 1 - distanceFromOrigin / 3;

// Return a random colour from the array above
const color = colors[Math.floor(Math.random() * colors.length)];

console.log(`Point ${i} has scale factor ${scaleFactor} and color ${color}`);

// Return IPointMetadat3D with pointScale and vertexColor properties
metadata.push({
vertexColor: parseColorToUIntArgb(color),
pointScale: scaleFactor
});
}

// Add a ScatterRenderableSeries3D configured as bubble chart
sciChart3DSurface.renderableSeries.add(
new ScatterRenderableSeries3D(wasmContext, {
dataSeries: new XyzDataSeries3D(wasmContext, {
xValues,
yValues,
zValues,
metadata // Optional metadata here. Property vertexColor is read to color the point
}),
// When metadata colours are provided, the pointMarker.fill is ignored
pointMarker: new SpherePointMarker3D(wasmContext, {
size: 25
})
})
);

This results in the following output:ย 

info

IPointMetadata3D๐Ÿ“˜ can be any javascript object but the property vertexColor is used to determine scatter 3D datapoint colour. This is in hex format Alpha, Red, Green, Blue, so 0xFFFF0000 would correspond to red. The helper functionย parseColorToUIntArgb๐Ÿ“˜ can convert Javascript Hex codes to this format.