Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8311573
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T19:51:35+00:00 2026-06-08T19:51:35+00:00

Please take a look to this simple jsfiddle: http://jsfiddle.net/perikut/9qUVW/2/ (sorry if using Firefox, I

  • 0

Please take a look to this simple jsfiddle: http://jsfiddle.net/perikut/9qUVW/2/ (sorry if using Firefox, I don’t know why it doesn’t look good…)

enter image description here

In our object can we use another word than ‘children’ to indicate where extract data from? (all examples I see follow this data structure, see below). Where should we indicate that?

I consider my code quite deficient (see the jsfiddle), as I am forced to declare two times the ‘group’ parameter in order to show/hide childrens from a group/parent.

There would be no way to directly select group1’s children nodes and apply animations over? I want a much more complex data structure in the future, so I need to know this kind of basics before.

Current data structure:

data = {
name:'root',
group:'no_group',
children:[
    {
        group: 'group1',
        children:[
            { group:'group1',name:'a1',value:10,color:'red' },
            { group:'group1',name:'a2',value:40,color:'lightcoral' }
        ]
    }
    , { .... } 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T19:51:37+00:00Added an answer on June 8, 2026 at 7:51 pm

    In D3’s hierarchical layouts, all nodes are populated with a set of standard attributes, including a “parent” attribute. So you can avoid specifying a “group” attribute, and use “parent” instead when selecting the children of a particular node:

    d3.selectAll("circle").filter(function(d) { return d.parent.name === "foo"; });
    

    Alternatively, you can compare by object reference if you have a reference to the node object itself.

    var parent = nodes.filter(function(d) { return d.name === "foo"; });
    d3.selectAll("circle").filter(function(d) { return d.parent === parent; });
    

    Here I’m assuming that each node has a “name” attribute.

    You also mentioned using retrieving children from a different attribute. Yes, this can be achieved using the “children” accessor. Note that this will store a node’s children in an attribute called “children” on that node, overwriting anything that may be there already.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please take a look at this simple code: http://jsfiddle.net/kerp3/ The box has an inner
Hi please take a look at this fiddle http://jsfiddle.net/bloodygeese/pwjNQ/1/ I am trying to figure
could somebody please take a look at this http://jsfiddle.net/bloodygeese/EzkFR/1/ My aim is to on
can someone take a look at this please http://jsfiddle.net/bloodygeese/ecscY/56/ it looks like I have
please take a look at this fiddle : http://jsfiddle.net/cX47v/1 I am simply trying to
http://jsfiddle.net/KKL5G/ Please take a look at the above html and css for the buttons.
Please take a look at this example: #include <iostream> #include <vector> #include <string> using
I'm sure this is a very simple question but please take a look at
Please take a look at this code: template<class T> class A { class base
Please take a look at this screenshot first: I would like to move the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.