Just been playing with the D3 graphs - it's very nice!
One question - am not quite sure how to get Nodes on to the diagram which are linked to by another node.
My initial data was in 2 sheets: Nodes and Links
Structure for Nodes and data is:
NodeName,Group,Attribute1,Attribute2
NodeA,GrpA,attrA1,attrA2
NodeB,GrpB,attrB1,attrB2
NodeC,GrpB,attrC1,attrC2
Structure for Links and data is:
ParentNode,ChildNode,LinkType,LinkAttribute1
NodeA,NodeB,link,linkattr1
NodeB,NodeC,link,linkattr2
Have set up a sheet with just the links sheet, and at the moment I am missing NodeC using above data. I can see from the .html generated that there is no Node record for NodeC.
How do I get such "dangling" nodes to be processed properly?
I could write a custom function but assume there is probably something I am missing with setting up options etc.
Regards
Robert