Questions tagged [icicle-diagram]

An icicle diagram is a graphical display of clustering results, so called because it resembles a row of icicles hanging from the eaves of a house.

An icicle diagram is a graphical display of clustering results, so called because it resembles a row of icicles hanging from the eaves of a house.

22 questions
2
votes
1 answer

Is it possible to have multiple parent/root nodes in a D3 Icicle plot?

I am new to d3 and currently working on the Icicle layout example. I have 2 questions: Is it possible to have multiple top-level nodes in this example? In other words, instead of a single top-level node of "flare", can we have 3 top-level nodes…
Adnan
  • 69
  • 1
  • 8
1
vote
1 answer

Vertical Icicle in D3

I need to rotate this Icicle to a vertical(up-down) way: https://observablehq.com/@d3/zoomable-icicle. The first screen option works but when I clicked the item, it fails. The following changes worked: .attr("transform", d => "translate(" + d.x0 +…
user16881808
1
vote
1 answer

d3.js v4 Partition where parent's value is greater than sum of its children (node.sum)

I know, in d3.js v4, it is possible that parent's value is greater than sum of its children by using the d3.v4 hierarchy().sum() I also know that the hierarchy().sum() function will return a value that is a sum of the node and its children.…
1
vote
1 answer

Updating a partition view (icicle or sunburst) while zoomed in

I am using these views to monitor things that are constantly updating, and I make a get request every minute or so to update the view. Currently, if someone is zoomed in while it gets the new data, they are zoomed back out to the first level. I was…
Josh
  • 334
  • 1
  • 17
1
vote
1 answer

How to rename a node in D3 graph

I need to provide "renaming" functionality to rename nodes using the Icicle example (http://bl.ocks.org/mbostock/4347473). I am not able to find any solutions similar to what I would like to do, and as browsers usually do not allow for right click,…
sim1
  • 457
  • 1
  • 7
  • 26
1
vote
1 answer

How to get the rotation of a text label in the Zoomable Icicle Layout in D3?

I have added labels to the Zoomable Icicle Layout example provided here: http://bl.ocks.org/mbostock/1005873 I rotate the labels based on available space using the following: .attr("transform", function (d) { return (x(d.x + d.dx) - x(d.x)) >…
sim1
  • 457
  • 1
  • 7
  • 26
1
vote
0 answers

How to Customize the D3 Zoomable Icicle Layout as Required?

I need to customize the D3 Zoomable Icicle Layout example provided here: http://bl.ocks.org/mbostock/1005873 I require the customization as follows: The layout represents folders and files - folders represent parents and files represent children.…
sim1
  • 457
  • 1
  • 7
  • 26
0
votes
0 answers

Customizing individual layer's width in Plotly Icicle chart

Is it possible to customize the width of individual layers in Plotly Icicle chart? For example in the chart below, how can we reduce the width of the first layer on the left? Plotly Icicle chart I tried changing branchvalues or even changing the…
Amin
  • 1
  • 1
0
votes
1 answer

How to align text shown inside a plotly figure?

Problem I have a plotly icicle figure with a custom texttemplate. I want to either show a table or properly aligned text (i.e. with true tabs and not  ). I noticed that texttemplate accepts arguments such as
, nbsp; , but I…
Xtiaan
  • 252
  • 1
  • 11
0
votes
1 answer

How to show multiline text in a plotly icicle?

I have a plotly icicle object named fig: fig = px.icicle(df, names="people"...). I want to show more text than just df.people. I tried the following: fig.update_traces(texttemplate=df.people + "\n" + "more text, but on a new line") But this does not…
Xtiaan
  • 252
  • 1
  • 11
0
votes
1 answer

How can I set the x-axis to a timeline in a plotly icicle?

I want to create an icicle, but where the x-axis represents a timeline. Example of a plotly icicle: I want to maintain the hierarchical structure, but introduce a timeline on the x-axis. For example: Can I vary the length of each rectangle in a…
Xtiaan
  • 252
  • 1
  • 11
0
votes
1 answer

Creating an Icicle Chart using Python Visual in Power BI

I am trying to create an icicle chart for a company hierarchy. Our company uses Power BI for it's reports and I can see that there isn't an icicle visual within Power BI but that one can be created using the Python Visual option. I have a little bit…
0
votes
1 answer

Custom Sorting in Plotly Express Icicle Visualizations

I am dealing with a dataset that has quarterly tasks, and I am trying to visualize it through a plotly express icicle chart. The way the data is structured is like this: Objective Quarter Task Status Value Finish Project A 1 Sort…
0
votes
0 answers

D3 Icicle Chart Static Node Height

I'm creating a horizontal D3 Icicle Chart that will be used to display a pedigree. This will only show the father/mother so each node will only ever have two children (its parents) and this will continue on until the end of that particular line. The…
princessjackie
  • 565
  • 3
  • 13
0
votes
0 answers

Creating ICICLE Chart using Highcharts Library

I want to develop a ICICLE Chart as provided by d3 library using Highcharts Library. To the extent I googled, I couldn't find any samples of ICICLE Chart kind of Visualization Using Highcharts. If this is really possible, please help me with how to…
VigSank
  • 62
  • 8
1
2