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
2 answers
To get the name of the series in bubble chart in highcharts
Below is my JSON Data for bubble chart.
{
"chart":{"type":"bubble","plotBackgroundImage":"Image/bubble.jpg"},
"plotOptions":{"series":{"dataLabels":{"enabled":true}}},
"series":
[
{"data":[{"x":7,"y":7,"z":49,"name":"Task 2"}]},
…

Reshma
- 864
- 5
- 20
- 38
0
votes
1 answer
HighCharts: SVG outside plot area
I am designing an HighCharts bubble chart (a matrix with coloured fields, drawn using SVG), that should have some text explaining the axis values outside of the actual chart area.
That is, because the axis values are A-E and need a lengthy…

PeerBr
- 675
- 1
- 11
- 26
0
votes
1 answer
bubble chart with highstock
Can we do a bubble chart with highstock ?? if yes i need help please because i do it but it didn't work:
$(function () {
$('#container').highcharts('StockChart',{
chart: {
type: 'bubble',
…

salma essaidi
- 3
- 1
- 3
0
votes
2 answers
Enforce 0 on axis in HighCharts bubblecharts
I want to enforce that the axis of my bubble chart to starts at 0. In any other chart type I would set
yAxis: {
min:0
}
But this can cause bubbles with an y value near zero to be clipped.
All I could come up with so far is to add an invisible…

Koos
- 289
- 3
- 12
0
votes
1 answer
vb.net bubble chart with gradient style in each buble to make it look like a ball
I have a bubble chart in vb.net with the code below and I would like to make the bubbles appear with a gradient stlyle to look like a ball (rather than a circle)
Dim xValues As Double() = {10.62, 75.54, 60.45}
Dim yValues As Double() = {650.62,…

Selrac
- 2,203
- 9
- 41
- 84
0
votes
1 answer
How to add labels to a bubble chart in asp.net
Does anyone knows how to add labels to a Bubble chart in vb.net?
I can easily add the bubbles and size, but I cannot figure out how to add the labels. See detail code as example
Dim xValues As Double() = {10.62, 75.54, 60.45}
Dim yValues As…

Selrac
- 2,203
- 9
- 41
- 84
0
votes
1 answer
Utilizing full height in highcharts bubble chart
I have an issue where I am not able to utilize the full height of the plot area. I am making a chart that will illustrate number people spread on given categories (A to H). The size of the bubbles represents number of people. See…

Rob
- 103
- 1
- 4
0
votes
2 answers
how to combine bubble and line chart?
I'm trying to make a bubble chart and draw a line to seperate the bubbles into two areas one bellow the line and one above it. so can i combine google's visualisation bubble and line chart? if not are there any other alternatives to google…

Hannoun Yassir
- 20,583
- 23
- 77
- 112
0
votes
2 answers
Pls suggest me an example for dotchart's hover functionality using graphael
I am trying to create a dot chart(bubble chart) using gRaphael. But their documentation is not so clear on how to add hover effects when the user hovers on the dots.
Could any one pls suggest me some examples or give some help tips on the…

Guru RajaSubbaiah
- 33
- 6
0
votes
1 answer
How to Prevent Bubbles Overlaps in Bubble plot in R
Is there an easy way to avoid overlap of bubbles when working with symbols ?
Here is a minimal example:
set.seed(123)
n = 200
x = runif(n)
size = abs(rnorm(n))
symbols(x,circles=size)
Any suggestions would be greatly appreciated.

ed82
- 3,007
- 3
- 15
- 11
0
votes
2 answers
String Labels for dependent axis in silverlight bubble chart
I'm creating a bubble chart using silverlight. The dependent axis takes only int values but I need to label both the axes with strings. I browsed a lot and couldn't find proper answer. There is no proper API for toolkit chart also. Can someone…

KS88
- 147
- 1
- 1
- 8
0
votes
1 answer
Excel VB.NET How do you change the border of an individual bubble in a bubble chart?
I am generating bubble charts in VB.NET and I think it would be nice to make the border of a bubble thicker, so its easier to see if there is an overlap, but I can't sort out how to do it. To do it by hand you just right click on the bubble, go to…

asjohnson
- 1,057
- 4
- 17
- 25
0
votes
1 answer
Primefaces 4 Bubble-Chart error
I am trying to implement the sample bubble chart into my code as a test before I later on connect it with the database involved. The following is my chartBean.java code:
package jsf;
import java.io.Serializable;
import…

AodhanOL
- 630
- 7
- 26
0
votes
2 answers
Bubble Chart in iOS application
I need to implement bubble chart in an iPad application with each bubble having user interaction (touch event) to navigate to a detailed view.
Is there any framework or a way to do so (like bargraph, piechart, linegraph using coreplot)??
I tried…

Harsha Vardhan Pabbineedi
- 55
- 3
- 10