d3-hive
v0.0.5
Published
hive chart for d3
Downloads
22
Readme
d3-hive
A simple hive-swarm plot
Install
npm i d3-hiveUsage
import {hive} from 'd3-hive'Assumptions
It is assumed that the data bound to hive is an object, where key corresponds
to a "hive" in the swarm
data = {
'A': 10,
'B': 20,
...
}more complex data can be provided should utility functions such as valueExtractor
be overwritten from their default behavior:
data = {
A: {
x: { value: 1 },
y: { value: 2 },
...
},
...
}