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

@lgv/beeswarm

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lgv/beeswarm

ES6 d3.js clustered circles along an axis visualization.

latest
Source
npmnpm
Version
2.0.2
Version published
Weekly downloads
12
-40%
Maintainers
1
Weekly downloads
 
Created
Source

Beeswarm

ES6 d3.js clustered circles along an axis visualization.

Install

# install package
npm install @lgv/beeswarm

Data Format

The following values are the expected input data structure; id can be omitted.

[
    {
        "label": "xyz",
        "value": 1,
        "x": 5,
        "y": 2
    },
    {
        "label": "abc",
        "value": 3,
        "x": 10,
        "y": 8
    }
]

Use Module

import { Beeswarm } from "@lgv/beeswarm";

// have some data
let data = [
    {
        "label": "xyz",
        "value": 1,
        "x": 5,
        "y": 2
    },
    {
        "label": "abc",
        "value": 3,
        "x": 10,
        "y": 8
    }
];

// initialize
const b = new Beeswarm(data);

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

Environment Variables

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

NameTypeDescription
LGV_HEIGHTintegerheight of artboard
LGV_WIDTHintegerwidth of artboard

Events

The following events are dispatched from the svg element. Hover events toggle a class named active on the element.

TargetNameEvent
bubble circlebubble-clickon click
bubble circlebubble-mouseoveron hover
bubble circlebubble-mousemouton un-hover

Style

Style is expected to be addressed via css. Any style not met by the visualization module is expected to be added by the importing component.

ClassElement
lgv-bubblecircle element
lgv-beeswarmtop-level svg element
lgv-nodecircle/text group element
lgv-bubble-labelcircle text label element
lgv-bubble-label-partialindividual stacked lines of circle text label element

Actively Develop

# clone repository
git clone <repo_url>

# update directory context
cd beeswarm

# run docker container
docker run \
  --rm \
  -it  \
  -v $(pwd):/project \
  -w /project \
  -p 8080:8080 \
  node \
  bash

# FROM INSIDE RUNNING CONTAINER

# install module
npm install .

# run development server
npm run startdocker

# edit src/index.js
# add const b = new Beeswarm(data);
# add b.render(document.body);
# replace `data` with whatever data you want to develop with

# view visualization in browser at http://localhost:8080

Keywords

visualization

FAQs

Package last updated on 02 Jun 2025

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