John Thomas
John Thomas

Reputation: 222

How to create Bubble chart in C3.js

I am trying to create a Bubble chart using C3js chart. I've selected chart type as 'scatter'. Is there any way can join the bubbles in below format enter image description here

Upvotes: 3

Views: 1984

Answers (1)

beaver
beaver

Reputation: 17647

There is an undocumented C3.js extension for bubble chart:

https://github.com/c3js/c3/blob/master/extensions/chart-bubble/

Which introduce the bubble type.

Here is a fiddle: http://jsfiddle.net/beaver71/do2kLLjp/

Probably other chart library are preferably for this chart type:

Upvotes: 2

Related Questions