Questions tagged [sunburst-diagram]

Sunburst diagrams are a kind of tree diagram, in which each layer is represented as a ring around a center, and nodes are represented as arcs within such layers. They are typically used to visualize hierarchical data.

336 questions
0
votes
1 answer

D3,js error "d.parent.data is undefined" in mbostock/raw/910126/ sunburst chart

I have downloaded the code from http://bl.ocks.org/mbostock/raw/910126/ and I believe that I have also downloaded the correct json file (based on flare.json). However, when I run the script the sunburst chart is completely black and apparently due…
PatriciaW
  • 893
  • 1
  • 12
  • 30
0
votes
1 answer

How can I add a background circle to a sunburst plot?

How do I add a background circle to a sunburst plot in d3? I'm using the standard zoomable sunburst example: I just want a full circle of specified color, to highlight the 'jaggy-ness' of a particular display.
Elbin
  • 492
  • 1
  • 3
  • 11
0
votes
2 answers

append a circle in middle of all my path (sunburst)

Hello I do an sunburst or bilevel chart it's middle of a pie & donut chart ^^ When I append all path it works fine: this.path = this.svg.selectAll("path") .data(this.partition.nodes(rootData).slice(1)) .enter().append("path") .attr("d",…
istiti
  • 75
  • 10
0
votes
1 answer

How to create legend for D3 Sequence Sunburst?

I'm modifying the original D3 Sequence Sunburst file to better suit my needs. The original colors variable is a hard-coded object. This clearly cannot be the best method. I'm using the flare.json example, which is larger, harder to read, and still…
Jefftopia
  • 2,105
  • 1
  • 26
  • 45
0
votes
0 answers

D3 - Fisheye for Sunburst Chart

I am trying to implement Fisheye for Sunburst chart. I couldn't make it work. I tried something similar to the below example. http://jsfiddle.net/g88S7/ svg.on("mousemove", function() { fisheye.focus(d3.mouse(this)); }); Can someone tell me…
0
votes
1 answer

Issue labeling d3 sunburst

I am developing a d3 sunburst type. Everything is ok, It is taking the flare JSON correctly but, when I go to label the path look what is happening: The code is the following: var width = 960, height = 700, radius = Math.min(width, height)…
araujophillips
  • 322
  • 1
  • 5
  • 22
0
votes
1 answer

Cheese diagram in d3.js

How would you implement this with d3.js: I started with sunburst diagram, but how to handle pics around circle? How to rotate them? etc. (assume each cheese has its png pic)
VividD
  • 10,456
  • 6
  • 64
  • 111
0
votes
0 answers

D3js plugin for Fisheye Distortion not appearing in Tree Layout & Sunburst Partition

I'm trying to implement fisheye plugin for d3js in Tree Layout & Sunburst Partition. The example given is for force layout. I tried the way they have mentioned for fisheye. But I feel Like there is some layout based support, due to which it's not…
Sumant
  • 954
  • 1
  • 18
  • 39
0
votes
0 answers

Parsing CVS to JSON tree with parent IDs

I have a problem with parsing my big (~100K rows) CVS file: ID, FirstName, LastName, Division, Date, Parent_ID1, Parent_ID2, Parent_ID3 1, TestName1, TestLastName1, Division1, 1.1.2001, , , , 2, TestName2, TestLastName2, Division2, 2.5.2006,1,…
mibru
  • 3
  • 3
0
votes
1 answer

Scale in Bilevel Partition in D3

I am trying to make the Bilevel Partition in D3 work with log scale. However, it doesn't seem to be working properly. I have specified a log scale for angles: var angle1 = d3.scale.log() .base(2.0) .domain([0, 2 * Math.PI]) …
akuz
  • 607
  • 7
  • 14
0
votes
0 answers

How do I add a toolhelper to the d3.layout.partition example?

I am trying to add a toolhelper, more specifically this one to the d3.layout.partition example. The point is that when you hover over a rectangle (i.e. an element in the tree) the toolbar shows up displaying information about that section. I have…
Perry
  • 1,709
  • 1
  • 17
  • 25
0
votes
0 answers

Is it possible to combine pack layout (circles) with partition layout (sunburst) using d3.js library?

I'm trying to group circles, that are visualized trough pack layout (Bubble Chart) from json file, in partitions that are made with Sunburst Partition layout. So far I could not make it work in various attempts. But if it is not possible, what is…
0
votes
0 answers

d3 animating path with attached text

I've created a sunburst chart following the example at http://strongriley.github.io/d3/ex/sunburst.html: Everything fine, also when attaching text to the chart (via text and textPath element using an xlink:href attribute that points to the ID of an…
mdc
  • 1
0
votes
2 answers

Highcharts - Sunburst partition

I would like to know the best approach to create a drill-down sunburst partition with Highcharts? My initial approach was to render all Series, and change the series on the fly according to the selected one (hiding the inner series and changing the…
dotmindlabs
  • 778
  • 1
  • 12
  • 35
0
votes
1 answer

Transitioning innerRadius of svg.arc - D3.js

I have a question, that is closely related to this one. As opposed to the example, I also need to transition the innerRadius of the sunburst, hence the innerRadius property of the d3.svg.arc(). I know it has to be done in a similar fashion with…
RMinelli
  • 171
  • 2
  • 13
1 2 3
22
23