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
1 answer
d3js: Hightlight bubble with specific parameters coming from input in bubble chart
I have a d3 script which has data in the following format:
var data = [{name: "A", rank: 0, student_percentile: 100.0,
admit_probability: 24},
{name: "B", rank: 45, student_percentile: 40.3,
admit_probability:…

Yesha
- 648
- 1
- 7
- 29
3
votes
0 answers
How to create a Bubble chart timeline in R on one horizontal line
I would like to create a bubble chart in R where each bubble represents a mass shooting: casualties Killed and casualties Injuredsomething like the following:
Basically, I want a ggplot2 bubble chart with geom_point on one horizontal line. Without…

Tdebeus
- 1,519
- 5
- 21
- 43
3
votes
1 answer
R, ggplot2: creating a single legend in a bubble chart with positive and negative values
I want to create a single legend for a bubble chart with positive and negative values like in plot below, generated using sp::bubble().
But, for various reasons I want to duplicate this in ggplot2. The closest I have gotten is to generate a single…

zoneparser
- 110
- 9
3
votes
1 answer
R Scatterplot/bubble chart with dot size based on observation number
I know this question has been somewhat answered here, here and here.
In all of these examples the dot/bubble size is based on a third factor such as size.
However, in my data, I only have 2 variables, xval and yval.
library("ggplot2")
xval <-…

tlorin
- 1,100
- 6
- 17
- 30
3
votes
1 answer
R Plotly: Smaller markers in bubble plot
I'm making a bubble plot in Plotly (for R) and I keep getting overlapping markers. Is there a way to "scale down" all markers, so that their relative sizes are preserved but there is no overlap? I want to keep the dimensions of plot the same. Here's…

Kira Tebbe
- 576
- 8
- 23
3
votes
1 answer
Highcharts - Bubble chart - Moving gridlines
I have created a highcharts bubble chart as follows:
jsFiddle
If possible I'd like the a-axis gridlines to be in the middle of the bubbles.
Is there a way of achieving this ?
Here's the code:
$(function () {
var data = [{ x: 0, y: 1, z: 1,…

Pat Dobson
- 3,249
- 2
- 19
- 32
3
votes
2 answers
Highcharts - Bubblechart - adding padding to top and bottom of plot
I have created a bubble chart in Highcharts as follows:
jsFiddle
As you can see the 'bubbles' for data '0' and data '7' are cut off.
Is there anyway to add padding on the top and bottom to take this into account ?
I know extending the axis range to…

Pat Dobson
- 3,249
- 2
- 19
- 32
3
votes
1 answer
Highcharts - bubble diagram need smaller bubbles infront of bigger
We are using the Highchart bubble diagram, however when bubble x and y are on the same place in the diagram and bubble y is smaller there is no way to neither see nor much less click the smaller bubble.
Is there any way to plot the bigger bubbles…

Appe
- 31
- 2
3
votes
1 answer
Highcharts Bubble Chart - How to move an individual point's data label (dataLabel) to the front/top
I have a Highcharts bubble chart where many of the points are going to have the same, or very similar values. Currently only the top point's data label is visible. I have functionality that allows the points to be highlighted (using the select()…

jbgarr
- 1,378
- 1
- 12
- 23
3
votes
1 answer
Unproportional Bubble Chart with the size paramater
I´ve created a bubble chart and I put in some testing values as follow:
this.chart1.Series["blueBubble"].Points.AddXY(2, 3, 6);
this.chart1.Series["redBubble"].Points.AddXY(1, 0, 7);
this.chart1.Series["yellowBubble"].Points.AddXY(1, 3,…

csnewb
- 1,190
- 2
- 19
- 37
3
votes
1 answer
How to make a bubble chart with GGally::ggpairs?
I would like to create a bubble chart matrix using GGally::ggpairs.
Defining the point/bubble size in ggplot2 is easy using the size argument:
library("ggplot2")
data(mtcars)
p <- ggplot(mtcars, aes(wt, mpg))
p + geom_point(aes(size = qsec))…

chamaoskurumi
- 2,271
- 2
- 23
- 30
3
votes
1 answer
highcharts opacity when "bubbles" are stacked
I have a problem regarding opacity(transparency) with highcharts in my case bubble chart and i think i can explain it best with an example
Example: i have a series with 100 bubbles that cover each other in the chart and the opacity is set to 1%…

Grega Lenič
- 63
- 4
3
votes
1 answer
bubbleChart with two ordinal scales in dc.js
I would like to create a bubbleChart using dc.js with two ordinal axis. When I try it, all my bubbles end up at the top of the Y-axis and the Y-axis does not seem top be ordinal.
Is there a way to do that properly ?
Here is my configuration for the…

Chapo
- 2,563
- 3
- 30
- 60
3
votes
2 answers
Displaying additional text for Highcharts Bubble chart
Well... I know how to display custom text on each bubble in highcharts bubble chart but is it possible to have additional text appear above or outside the bubble (something like the image below)?
For those who need to know how to display custom text…

Bakhshi
- 1,299
- 16
- 25
3
votes
2 answers
SSRS BIDS 2008 Bubble Chart - Bubble Marker Size
I have a bubble chart and I want to have the bubble size adjusted based on a field called [Weight]. The larger the weight the larger I want my bubble to be. The weights range from 5-65. I don't have a preference on the range for the size of the…

AKudla
- 325
- 1
- 3
- 9