Questions tagged [bubble-chart]

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.

478 questions
0
votes
1 answer

Asgallant's Custom Tooltip Code for a Google Bubble Chart with Dashboard

I owe every bit of credit for the code below to Chris from this thread as well as r6danl99 and asgallant from this thread. So...I hope none of them mind me referencing their work in an attempt to figure out what I'm overlooking in their…
Greg
  • 1,264
  • 14
  • 21
0
votes
1 answer

dc.js bubble chart fails to display points

I am trying to get a bubble chart working with crossfilter and dc.js. But I am having a problem getting my points to appear on my chart. I have built a JSFiddle here: http://jsfiddle.net/4asmb7h1/ var data = [ {date: "12/27/2012", label: "a1",…
awildeep
  • 115
  • 1
  • 8
0
votes
1 answer

Unable to get dragging effect on bubbles

I had achieved the same thing here, but I am not able to reproduce it in this bubble chart. JS: var selection = d3.selectAll( '.selected'); var drag = d3.behavior.drag() .on("drag", function( d, i) { if( selection[0].indexOf( this)==-1) { …
Rahul Desai
  • 15,242
  • 19
  • 83
  • 138
0
votes
1 answer

unable to change symbol in nvd3 bubble chart

I am trying to have different plot symbol for each of the groups of points I have. The code is here. I used this piece of code shape: shapes[i] But am unable to get different symbols. I am able to only get circles. Where am I going wrong?
Dinesh
  • 2,194
  • 3
  • 30
  • 52
0
votes
1 answer

Colors in dc.js charts not linked with each other

I have a choropleth(world map) and a bubble chart in dc.js. The colors in the bubbles and the map should be the same (country wise). On selection of a country, the filtered bubble should have the same color as of the map because the map and bubbles…
Ronak Bhandari
  • 328
  • 1
  • 3
  • 15
0
votes
1 answer

Trouble Loading Google Charts Treemap and Bubble Chart on same page

Trying to put both a treemap and bubble chart on the same page, both work individually, but not together. Tried a bunch of different things, but not sure if I am defining the two separate things properly.
rontho1992
  • 116
  • 1
  • 11
0
votes
1 answer

How to arrange matplotlib scatterplot surface data?

I am starting with matplotlib and would like to generate a bubble chart. I started with the the scatter demo but I cannot understand how to prepare my data. My aim is to get this (the surfaces are in proportions 1:2:3:4) and my code was import…
WoJ
  • 27,165
  • 48
  • 180
  • 345
0
votes
2 answers

Specifying spatial coordinates in a data.frame

Pretty silly but I can't figure out what I'm doing wrong here: I have a data.frame with 2 columns: df = data.frame(x = rep(1, 20), y = runif(20, 10,20)) I then want to set x and y as spatial coordinates so I can plot df in a bubble plot. So I…
user1701545
  • 5,706
  • 14
  • 49
  • 80
0
votes
1 answer

d3.js Bubble Force Chart application

http://jsfiddle.net/pPMqQ/146/ I'm developing a bubble chart application that is a derivative of a force chart to provide a little bit of movement. Here is some of the code. As I create the svg - I also set up the viewBox - which I think could be…
The Old County
  • 89
  • 13
  • 59
  • 129
0
votes
1 answer

Plotting in R language using ggplot

I have a list of cities and their coordinates, and also for each city I have a variable varA which I want to represent in a map using ggplot and bubble chart. For example : CityA lat 22.93977 lon 46.70663 varA 545 CityB lat 23.93977 lon 46.70663…
user1997567
  • 439
  • 4
  • 19
0
votes
1 answer

how to have multple labels in ggplot2 for bubble plot

Pardon me if my question is too simple or silly, I have just started working on R. I have searched and tried many times but I am unable to have multiple labels. This is what my code looks…
Death Metal
  • 830
  • 3
  • 9
  • 26
0
votes
0 answers

SonarQube Sonar - Project File Bubble Chart

I have latest SonarQube and it's plugin for "Project File Bubble Chart". Everything is working fine. On the dash, I see valid information for every good plugin I installed. The newly added "Project File Bubble Chart" plugin - seems like has some bug…
AKS
  • 16,482
  • 43
  • 166
  • 258
0
votes
1 answer

JQuery BUBBLE CHART- need to display bubbles with different colors

Recently am working with bubble chart usring highchart in jquery. I want to give different cololors to my bubbles. my problem is when is supply color along the data as var data = {[x:30,y:40,r:50,'rgba(0.5,0.6,0.5,0.5)'], …
0
votes
1 answer

d3 dynamic bubble chart - adding text to bubbles

I'm creating a visualisation using a dynamic bubblechart. I have it working however instead of having floating tooltips I'd like to just label each of the bubbles with its name, I've tried a number of different approaches but can't seem to get it…
alto125
  • 19
  • 6
0
votes
1 answer

SSRS Bubble Chart with X Axis "Swim Lane"

What The Customer Wants I have a customer that wants to have a bubble chart but with the bubbles in "swim lanes". So for example lets say the bubbles represent projects and each project is in a Phase (Phase 1, Phase 2, Phase 3). So in the image…
Ryan
  • 3,452
  • 4
  • 23
  • 20