Bubble chart is a kind of graph where we can plot 3 values. One value in X-axis, one in Y-axis and 3rd one is shown using the diameter of the bubble. It is much similar like a table where the values are represented with the bubbles' diameters.
Questions tagged [bubble-chart]
478 questions
2
votes
1 answer
Ggplot2 : bubbles representing propotions by category?
I've this data :
# A tibble: 19 x 8
country Prop_A Prop_B Prop_C Prop_D Prop_E Prop_F Prop_G
…

Aytan
- 136
- 1
- 9
2
votes
1 answer
How to avoid over lapping bubbles in bubble plot?
I want to separately plot data in a bubble plot like the image right (I make this in PowerPoint just to visualize).
At the moment I can only create a plot that looks like in the left where the bubble are overlapping. How can I do this in R?
b <-…

Dendrobium
- 323
- 5
- 13
2
votes
4 answers
Bubbles chart: how to avoid bubbles being cut off? google visualization
I'm using google visualization for bubble chart, data to x axis and Y axis is dynamic. I'm facing issue here is that bubbles get cut-off and there size is also not uniform.
using following options
options = {
'title': 'Chart',
…

mintra
- 337
- 1
- 3
- 19
2
votes
1 answer
How do I create weighted scatter plot / bubble chart with color gradient using plotly R
I'm trying to produce a weighted scatterplot/bubble chart using plotly. My dataset contains 4 columns:
1) Benchmark
2) Model
3) Improvement
4) Weight
I'm trying to have the x-axis be the benchmark, the y-axis the model. The size of the points would…

VincentChartier93
- 23
- 3
2
votes
2 answers
Highchart: Bubble heading is not showing if two bubbles intersect or comes near one another in Bubble chart
In Highcharts Bubblechart if i two bubbles comes near one another or intersect one another, the name on top of one bubble is not displaying.
Is there a way to display both the bubble names.
In this the notice the two bubbles in top right enter code…

SM079
- 412
- 2
- 7
- 20
2
votes
0 answers
How to change column size depending up on total numbers of bubble, in chart.js for bubble chart?
I am trying to display about 200+ bubbles in one chart, where 150+ bubbles are concentrated in one range and the rest of 50 bubbles are in 3 columns. I want to change the columns size as per the bubbles count.
see the image:
so red dot should be in…

shrikant joshi
- 494
- 4
- 12
2
votes
1 answer
Plotly: How to include multiple text variables in plot?
How can I show multiple text variables in an iplot()?
Here is an example:
df2007.iplot(kind='bubble', x='gdpPercap', y='lifeExp', size='pop', text='country',
xTitle='GDP per Capita', yTitle='Life Expectancy',
…

Sharvari Gc
- 691
- 1
- 11
- 25
2
votes
1 answer
Add a label to a point of a bubble graph (Chart.js)
I am having difficulty adding a label to points on my bubble graph.
I am trying to assign the same label as the legend for each of my datasets.
I have tried to assign these points a label, but I seem to only be able to display it's value.
I would…

Josh Gomes
- 193
- 4
- 16
2
votes
1 answer
c3 charts dynamic bubble size in scatter plot, wrong index
I'm trying to make a chart like with c3.js.
For the bubble size I create an array for each "continent" holding the population as a factor to increase the bubble size. Also the country name is stored in the same manner.
When adding the data points…

haferblues
- 2,155
- 4
- 26
- 39
2
votes
0 answers
Adding a tooltip on a interactive bubble chart (d3.v4)
I am trying to add a tooltip to this simple bubblechart that displays the key/value pair on mouseover of each bubble. I'm also having trouble adding a border to individual bubbles on mouseover as well, another styling component I'd like to add to…

Jack F
- 21
- 1
2
votes
1 answer
ggplot2 - R - How to fix size of bubble in legend
I would like to make the shape that shows the bubble color larger in the legend only. I have tried several suggestions from this site, but I have been unlucky so far. A basic example is below.
In this example, I would like for the "gear" size to be…

Matt
- 174
- 1
- 2
- 14
2
votes
0 answers
Does Chartist.js support Bubble charts?
We have some data and want to represent it on our website in bubble chart format.
We want a representation similar to https://bl.ocks.org/mbostock/4063269 (formed in d3.js)
I could not find a way to do this. Kindly help if there is any way…

Yesha
- 648
- 1
- 7
- 29
2
votes
1 answer
Highcharts missing information in scatterplot CSV/XLS export
When exporting scatter plot / bubble chart data as CSV or XLS, it is missing key information, see for example: http://jsfiddle.net/11fum86u/
This is the data (extract):
series: [{
data: [
{ x: 95, y: 95, z: 13.8, name: 'BE', country:…

Fred
- 49
- 1
- 7
2
votes
0 answers
Java jasper report - Bubble chart customisation
My JAVA project needs to generate PDF with chart as shown below. I managed to get similar chart with Jasper report. However, I am not able to achieve following things though Jasper report.
Print number inside bubble
String in x-axis
This is what I…

Naveen Kumar
- 31
- 3
2
votes
1 answer
How to show x-axis labels in BubbleChart?
I am using MPAndroidChart BubbleChart v3.0.2. In this version I am unable to set my custom labels on xAxis. how can I set xAxis label for each bar. i.e (label1, label2 etc)
if any one worked in it or know how to do kindly share.

Mubashar
- 333
- 6
- 15