New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@redsift/d3-rs-network

Package Overview
Dependencies
Maintainers
23
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@redsift/d3-rs-network

Generates network charts using D3v4.

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
23
Weekly downloads
 
Created
Source

d3-rs-network

Circle CI npm MIT

d3-rs-network

Usage

Browser

<script src="//static.redsift.io/reusable/d3-rs-network/latest/d3-rs-network.umd-es2015.min.js"></script>
<script>
  let VIZ = {
  "nodes": [
    { id: "grandparent1", strata: 0 },
    {id: "parent1", strata: 1},
    {id: "child1", strata: 2},
    {id: "child2", strata: 2},
    {id: "child3", strata: 2, friendlyName: "napoleon"},
    {id: "child4", strata: 2},
    { id: "grandparent2", strata: 0 }
    // ...
  ],
  "links": [
    { source: "grandparent1", target: "grandparent2", value: 40, color: 'red' },
    { source: "child1", target: "child3", value: 10.34, color: 'red' },
    { source: "child2", target: "child3", value: 10.34, color: 'red' }
    // ...
  ],
  "owns": [
    { parent: "grandparent1", child: "parent1" },
    { parent: "parent1", child: "child1" },
    { parent: "parent1", child: "child2" },
    // ...
  ]
  };

  var chart = d3_rs_network.html('blank').category(category)
  .tryGetChildren(tryGetChildren).tryGetParent(tryGetParent)
  .tryGetIndexBrothers(tryGetIndexBrothers).tryGetNumberOfBrothers(tryGetNumberOfBrothers)
  .textDisplay(textDisplay)
  ;

  d3.select('body').datum(VIZ).call(chart);
</script>

ES6

import { html as chart } from "@redsift/d3-rs-network";
let eml = chart();
...

Require

var chart = require("@redsift/d3-rs-network");
var eml = chart.html();
...

TODO

Additional functions for customisation of the visualizations. - Size of circles depending of given parameter as input - Color of circles depending on strata - Width of lines depending of given parameter as input - Color of lines depending of given parameter as input - Saturation of lines depending of given parameter as input - Possibility to display different hierarchy of links

Keywords

FAQs

Package last updated on 15 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc