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
3
votes
2 answers
Adding a custom tooltip to a bubble chart / highchart
I am trying to customize the tooltip in a highcharts bubble chart. Rather than having just the figures appear in the tooltip, I'd like to add context based on the x,y and z titles (ex, "50 fatalities, 100 injured, 150 total victims" instead of the…

elizabeth_shell
- 37
- 1
- 6
3
votes
2 answers
Highcharts: Change color of bubbles in one serie
Can I set different colors for a serie in a bubble chart? I try setting the property "color" but not work.
data: [{
x: 23,
y: 22,
z: 200,
name:"point1",
color: 'red'
}, {
…

Lorenzo
- 797
- 6
- 27
3
votes
2 answers
Customize Bubble chart's tooltip from Google Charts API
I'm trying to change the tooltip of the bubbles in the Bubble Chart from Google API.
The role:tooltip, which would solve my problem, doesn't work with this kind of charts.
Right now my bubble shows information about the values of the rows, which is…

Guillermo Bergengruen
- 123
- 1
- 8
2
votes
1 answer
SSRS BIDS 2008 Bubble chart - bubble legend size
Does anyone know how to make the bubble chart legend (pictured) bigger?
Not the text, but the actual bubble's that are so small you can barely see them.

JsonStatham
- 9,770
- 27
- 100
- 181
2
votes
1 answer
Bubble chart where the only metric is size and colour
I want to make a bubble chart like the one attached below.
The idea is to have a ggplot style bubble chart where all I really want to control is the size and colour of the chart, with no real control over the position. The bubbles should just be…

Leonhard Euler
- 231
- 1
- 7
2
votes
1 answer
Can animation_frame be set on the upper right corner of the animation plot?
I'm working on my animation chart with plotly express and it works well. But I want the animation_frame (which is the date on my plot) shown on the plot (shown on the red square on the plot). How to do this?
I didn't find the setting about…

CarterZhang
- 21
- 3
2
votes
0 answers
How to draw a Circle shaped packed Bubble Chart in Python?
I am trying to generate a circle shaped bubble chart like this one:
This is a comparison between multiple classes.
But I got this far:
I did this following the packed bubbles documentation of the matplotlib.
How can I make it circle shaped?
Here…

AlexPy
- 94
- 7
2
votes
1 answer
R Plotly how to link text to bubbles in order to remove it when click on legend
With plotly on R, I have a bubble scatter plot and I want to add black text on each bubble. I also have my bubbles colored following a column of my data frame (Type: Yes or No). On my legend, when I click on "Yes" it will remove the bubbles linked…

Chika
- 1,455
- 2
- 16
- 24
2
votes
3 answers
Add € sign to data labels in bubble chart - ggplot?
This is the head of my data:
structure(list(asutus = c("Eesti Draamateater", "Eesti Draamateater",
"Eesti Noorsooteater", "Eesti Noorsooteater", "Rahvusooper Estonia",
"Rahvusooper Estonia", "Rakvere Teatrimaja", "Rakvere Teatrimaja",
"Sakala…

Merlin Nuiamäe
- 93
- 5
2
votes
1 answer
How to change default label of each bubble in bubble chart using chartjs-plugin-datalabels
I am trying to add labels to each bubble in the bubble chart using chartjs-plugin-datalabels.
For each bubble, I want to show the label property of each object of data.dataset array
like "Grapefruit", "Lime". I am getting the value of r for all…

James_sheford
- 153
- 2
- 13
2
votes
1 answer
Aligning four 'nested' circles along their bottom edges in R
I am trying to create a visual that nests four circles as so:
The size of the circle depends on a ratio/numeric value relative to the largest circle.
I found this post which seems to provide a solution for two aligned circles: Bubble Chart with…

katebeckett
- 71
- 11
2
votes
1 answer
Bubble plot for COVID data using ggplot
I have a spreadsheet with Lat-Lon info of 14 regions in the Czech Republic (file here). I am trying to plot a map and put bubbles for the active cases in each of the regions. The lat-lon coords are for capital cities from each…

Ash
- 85
- 5
2
votes
1 answer
How to get a Packed circle chart in react chartjs?
I want to introduce a Packed circle chart (a variation of bubble chart which contains only the radius as its dimension). React Chartjs and even Chartjs support only Bubble chart but not Packed circle chart. Here is an example of the expected chart I…

Souvik Ray
- 2,899
- 5
- 38
- 70
2
votes
2 answers
How to draw a bubble map with longitude and latitude using Highcharts in react
I want to draw the map with bubbles (bubble map) on it in react project using Highcharts library.
These are my requirements:
drawing the map
showing the specific points/locations (bubbles) on the map. (we have
longitude and latitude of the…

Zahra Talebi
- 675
- 4
- 11
- 26
2
votes
2 answers
How to make a bubble graph using seaborn
import matplotlib.pyplot as plt
import numpy as np
# data
x=["IEEE", "Elsevier", "Others"]
y=[7, 6, 2]
import seaborn as sns
plt.legend()
plt.scatter(x, y, s=300, c="blue", alpha=0.4, linewidth=3)
plt.ylabel("No.…

user3582228
- 181
- 2
- 14