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
0
votes
1 answer
Highmaps label centering in irregular path
While working on Highmap to display some sort of data according of an area coverage. I was able to create the map with bubble chart type but I face one major problem, alignment! Each bubble is aligned to the area/path it belongs to; basically I have…

Beakal
- 134
- 1
- 4
- 15
0
votes
2 answers
.call() function passes function as argument instead of result
I'm seeing some behavior in D3 that I'm not expecting, and I don't know how to get around it. With this block of code:
node.append("text")
.attr("dy", ".3em")
.style("text-anchor", "middle")
.text(function (d) { return d.FSname; })
…

Craig Soich
- 145
- 10
0
votes
1 answer
how to add title to d3js bubble chart with force layout
This is the code of the bubble chart i created. I have used force layout to create the chart.
var margin = {
top: 10,
right: 10,
bottom: 10,
left: 10
},
width = 1000 - margin.left - margin.right,
height = 600 - margin.top - margin.bottom; …

salsa111
- 171
- 1
- 15
0
votes
1 answer
Keep scale of bubbles consistent across multiple maps using draw.bubble in mapplots?
I am currently drawing a number of bubble plots overlaid onto maps using draw.bubble from packagemapplots. The data consists of animal density for a number of different species in different locations e.g.
Species Density Lat Lon
A 10 …

J. Cee
- 49
- 5
0
votes
1 answer
How to make Legend for Core Plot bubble chart
I have made a bubble chart using a coreplot scatterplot by adjusting the size of each symbol in the data source method
-(CPTPlotSymbol *)symbolForScatterPlot:(CPTScatterPlot *)plot recordIndex:(NSUInteger)idx {
Event *thisEvent;
CGSize…

dave adelson
- 853
- 9
- 15
0
votes
1 answer
Stacked bubble chart, "bottom aligned"
New to programming and first time post.
I'm trying to create a stacked bubble chart to display how a population breaks down into it's proportions. My aim is to write this as a function so that I can use it repeatedly easily, but I need to get the…

Robert Whiffin
- 3
- 3
0
votes
0 answers
Add details to Bubble Chart from phuonghuynh
The bubble chart from phuonghuynh (http://bl.ocks.org/phuonghuynh/54a2f97950feadb45b07) is visually really appealing but it is missing some details for the big central bubble. Does somebody know how to add details to the big bubble?
The javascript…

Felix
- 987
- 1
- 12
- 23
0
votes
0 answers
Remove unnecessary horizontal/vertical spaces in highchart bubble chart
I am using highchart to show bubble chart. Everything is working fine except in many cases there are lot of horizontal space(below min cirlce and above max cicle) and vertical space(left of lowest x and right of highest y). Because of this issue my…

dmay
- 1,305
- 6
- 21
- 31
0
votes
1 answer
Making D3 Bubble Charts Without Children Elements
guys. I've been trying to do some work with some data for a capstone class I am currently in. This data is in Excel and I have converted it to JSON using a converter online. The problem with this data is that it doesn't have children elements and…

Logan Absher
- 43
- 4
0
votes
1 answer
Bubbles are not showing in Bubble chart using dc.jc
I am making a bubble chart using dc.js , crossfilter.js but bubbles are not showing in the chart !!!! It is just showing x axis and y axis but the bubbles are disappeared.
I was trying make this bubble chart in click to see
here is my code :
var…

Mitu Vinci
- 455
- 9
- 21
0
votes
1 answer
D3: `bubble.nodes` not applying correct graphical data to dataset
I am trying to create a Bubble Chart using D3 but can't figure out why my data is not processing correctly. I have imported the processed data from PHP and am now trying to run bubble.node in order to apply relevant graphical data for the circles…

John Dawson
- 443
- 3
- 10
- 28
0
votes
1 answer
Highcharts bubbles incorrect initial size, changes on resize
Here's a fiddle. Click the button and see the change. The chart.setSize(null,null) causes the bubbles to resize, even though the chart's size hasn't changed.
(Note that this is the equivalent to resizing the chart to a different size and setting it…

mcNux
- 1,472
- 1
- 15
- 13
0
votes
1 answer
d3 bubble chart with fisheye
I'm trying to implement the fish-eye plugin distortion with a bubble chart.
I've made all the approaches for this, using the documentation and other examples.
Using:
svg.on("mousemove", function () {
fisheye.focus(d3.mouse(this));
…

milheiros
- 621
- 2
- 14
- 34
0
votes
1 answer
Run-time error -2147417848 (80010108) - Method 'Offset' of object 'Range' failed
The macro below was created to update images used in a bubble chart. Sheet "NTA Chart" contains the bubble chart and sheet "Pie Charts" contains the pie charts that are used as images over the bubbles. Distributor is name of the data points, and…

Jill
- 1
- 1
0
votes
1 answer
How to make Bubble Chart Random Position
I want to make the bubble position is random instead of people need to set the y and x position.
Here the link of example bubble chart
http://codepen.io/anon/pen/LowKD
here the js script
$(document).ready(function() {
…

user3675706
- 1
- 1