Scatter Bubble Chart

Overview

This article explains how to create a Scatter Bubble chart in AnyChart.

To learn more about scatter charts in general and how to customize them, see Scatter Charts (Overview). In addition, you can read the Bubble Chart article to learn about other available settings.

Quick Start

To build a Scatter Bubble chart, use the anychart.scatter() chart constructor. Then call the bubble() method to create a Bubble series:

// create a chart
chart = anychart.scatter();

// create a bubble series and set the data
var series = chart.bubble(data);

Note: There is also the anychart.bubble() chart constructor. When you pass your data to this constructor or call the bubble() method after using it, a Scatter Bubble chart is created. However, you can create basic Bubble charts too – see Bubble Chart.

Playground

You are looking at an outdated v7 version of this document. Switch to the v8 version to see the up to date information.