New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@lgv/dendrogram

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lgv/dendrogram

ES6 d3.js dendrogram visualization

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Dendrogram

ES6 d3.js dendrogram visualization.

Style

Style is expected to be addressed via css. The top-level svg is assigned a class lgv-dendrogram. Any style not met by the visualization module is expected to be added by the importing component.

Environment Variables

The following values can be set via environment or passed into the class.

NameTypeDescription
DIMENSION_HEIGHTintegerheight of artboard
DIMENSION_WIDTHintegerwidth of artboard
PARSE_DELIMETERstringseparator on source data hierarchy path value

Install

# install package
npm install @lgv/dendrogram

Dendrogram

Data Format

The following values are the expected input data structure.

[
    {
        id: "some|path",
        value: 1
    },
    {
        id: "some",
        value: 3
    }
]

Use Module

import { Dendrogram } from "@lgv/dendrogram";

// initialize
const dg = new Dendrogram(data);

// render visualization
dg.render(document.body);

Keywords

visualization

FAQs

Package last updated on 26 Jul 2021

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