Skip to main content
Version: 6.5

Bubble chart

(quoted from Bubble chart definition in Wikipedia)

A bubble chart is a type of chart that displays three dimensions of data. Each entity with its triplet (x, y, r) of associated data is plotted as a disk that expresses two of the vi values through the disk's xy location and the third through its size.

Bubble charts can be considered a variation of the scatter plot, in which the data points are replaced with bubbles.

A bubble chart is used to display three dimensions of data at the same time. The location of the bubble is determined by the first two dimensions and the corresponding horizontal and vertical axes. The third dimension is represented by the size of the individual bubbles

Programmatically, you could use a bubble chart as following:

// creates the chart    
BubbleChart chart = new BubbleChart();
// adds to DOM
component.add(chart);
...
// example for Elemental2
// gets the chart instance as DOM element
Element element = chart.getChartElement().as();
// adds to DOM
DomGlobal.document.body.appendChild(element);

By UIBinder (ONLY for GWT), you could use a bubble chart as following:

<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui"
xmlns:c="urn:import:org.pepstock.charba.client.gwt.widgets">

<g:HTMLPanel width="100%">
....
<c:BubbleChartWidget ui:field="chart"/>
...
</g:HTMLPanel>
</ui:UiBinder>

Dataset

The bubble chart allows to define the data and a number of properties, used to display the data, by bubble dataset.

Every chart has got a method to create a typed dataset accordingly with the chart type. The dataset can be also created instantiating the constructor.

// creates the chart
BubbleChart chart = new BubbleChart();
// creates the dataset
BubbleDataset dataset = chart.newDataset();
// sets the option
dataset.setBackgroundColor(HtmlColor.RED);
...
// creates the dataset
BubbleDataset datasetNew = new BubbleDataset();
// sets the option
datasetNew.setBackgroundColor(HtmlColor.RED);
...
// sets the datasets to the chart
chart.getData().setDatasets(dataset, datasetNew);

The following are the attributes that you can set:

NameTypeScriptableDescription
backgroundColorString[] - IsColor[] - Pattern[] - Gradient[]YesThe bubble background color.
borderColorString[] - IsColor[] - Gradient[]YesThe bubble border color.
borderWidthint[]YesThe bubble border width (in pixels).
clipboolean - double - Clip-How to clip relative to chart area. Positive value allows overflow, negative value clips that many pixels inside chart area.
drawActiveElementsOnTopbooleanYesDraw the active bubbles of a dataset over the other bubbles of the dataset.
hitRadiusdouble[]YesThe bubble additional radius for hit detection (in pixels).
hoverBackgroundColorString[] - IsColor[] - Pattern[] - Gradient[]YesThe bubble background color when hovered.
hoverBorderColorString[] - IsColor[] - Gradient[]YesThe bubble border color hovered.
hoverBorderWidthint[]YesThe bubble border width when hovered (in pixels) .
hoverRadiusdouble[]YesThe bubble additional radius when hovered (in pixels).
labelString-The label for the dataset which appears in the legend and tooltips.
orderint-The drawing order of dataset. Also affects order for stacking, tooltips, and legend.
normalizedboolean-If true, you provide data with indices that are unique, sorted, and consistent across data sets and provide the normalized.
pointStylePointStyle[] - Img[] - Canvas[]YesThe bubble shape style.
parsingboolean-If false, the data set parsing is disable. If parsing is disabled, data must be sorted and in the formats the associated chart type and scales use internally.
radiusdouble[]YesThe bubble radius (in pixels).
rotationdouble[]YesThe rotation of the point in degrees.

General

The general options for a bubble dataset can control behaviors not related to styling or interactions and they are the following:

NameDefaultsDescription
clipUndefined.DOUBLEHow to clip relative to chart area.
drawActiveElementsOnToptrueDraw the active bubbles of a dataset over the other bubbles of the dataset.
labelnullThe label for the dataset which appears in the legend and tooltips.
normalizedfalseIf true, you provide data with indices that are unique, sorted, and consistent across data sets and provide the normalized.
order0The drawing order of dataset. Also affects order for stacking, tooltips, and legend.
parsingtrueIf false, the data set parsing is disable. If parsing is disabled, data must be sorted and in the formats the associated chart type and scales use internally.

Styling

The style of each point of the dataset can be configured by the following properties:

NameDescription
backgroundColorThe bubble background color.
borderColorThe bubble border color.
borderWidthThe bubble border width (in pixels).
hitRadiusThe bubble additional radius for hit detection (in pixels).
normalizedfalse
pointStyleThe bubble shape style.
parsingtrue
radiusThe bubble radius (in pixels).
rotationThe rotation of the point in degrees.

All above options have got the fallback to the associated Point elements, retrievable by the following statements:

// from chart instance
Point point = chart.getOptions().getElements().getPoint();
// sets options for all line datasets of the chart
point.setRadius(6);
...
// from defaults
Point defaultPoint = Defaults.get().getGlobal().getElements().getPoint();
// sets options for all line datasets of all charts
defaultPoint.setRadius(6);

Interactions

The interaction with each point can be controlled with the following properties:

NameDescription
hoverBackgroundColorThe bubble background color when hovered.
hoverBorderColorThe bubble border color when hovered.
hoverBorderWidthThe bubble border width (in pixels) when hovered.
hoverRadiusThe bubble radius (in pixels) when hovered.

All above options have got the fallback to the associated Point elements, retrievable by the following statements:

// from chart instance
Point point = chart.getOptions().getElements().getPoint();
// sets options for all line datasets of the chart
point.setRadius(6);
...
// from defaults
Point defaultPoint = Defaults.get().getGlobal().getElements().getPoint();
// sets options for all line datasets of all charts
defaultPoint.setRadius(6);

Scriptable

Scriptable options at dataset level accept a callback which is called for each of the underlying data values. See more details in Configuring charts section.

// creates chart
BubbleChart chart = new BubbleChart();
// creates dataset
BubbleDataset dataset = chart.newDataset();
// sets the option by a callback
dataset.setBackgroundColor(new ColorCallback<DatasetContext>(){

@Override
public IsColor invoke(DatasetContext context){
// logic
return color;
}
});

The following options can be set by a callback:

NameCallbackReturned types
backgroundColorColorCallback<DatasetContext>String - IsColor - Pattern - Gradient
borderColorColorCallback<DatasetContext>String - IsColor - Gradient
borderWidthWidthCallback<DatasetContext>int
drawActiveElementsOnTopDrawActiveElementsOnTopCallbackboolean
hitRadiusRadiusCallback<DatasetContext>double
hoverBackgroundColorColorCallback<DatasetContext>String - IsColor - Pattern - Gradient
hoverBorderColorColorCallback<DatasetContext>String - IsColor - Gradient
hoverBorderWidthWidthCallback<DatasetContext>int
pointStylePointStyleCallback<DatasetContext>boolean - PointStyle - Img - Canvas
radiusRadiusCallback<DatasetContext>double
rotationRotationCallback<DatasetContext>double

Data structure

Bubble chart datasets need to contain a data array of points, each point represented by an object containing x, y and r(radius) properties.

// creates a datapoint
DataPoint dp1 = new DataPoint();
dp1.setX(10);
dp1.setY(20);
// Bubble radius in pixels (not scaled).
dp1.setR(1);
// sets data by an array of datapoints
dataset.setDataPoint(dp1);
caution

radius options is not scaled by the chart, it is the raw radius in pixels of the bubble that is drawn.

Options

The bubble chart defines specific options implementation to be configured. These options are merged with the global chart configuration options to form the options passed to the chart.

// creates chart
BubbleChart chart = new BubbleChart();
// gets the chart options
BubbleOptions options = chart.getOptions();
// sets option
options.setResponsive(true);