0.4.3 • Published 3 years ago

@buckneri/sankey v0.4.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

sankey

My take on building a Sankey chart. The build includes a starter CSS file, and two javascript versions for ES modules and current browsers. No serious attempt has been made towards ie11 compatibility.

Installation

npm i --save @buckneri/sankey

API

Constructor

const sankey = new Sankey({
  container: document.getElementById("chart"),
  links: data.links,
  margin: { bottom: 20, left: 20, right: 20, top: 20 },
  nodeMoveX: true,      // if true, nodes can be dragged
  nodeMoveY: true,
  nodes: data.nodes,
  nodeSize: 30,         // node dimension not set by data
  orient: "horizontal"  // or "vertical"
  padding: 5,           // gap between nodes
  playback: false       // standard sankey, or playback mode if true
});

Events

"link-selected"
// emitted when user taps link

"node-playback"
// emitted when user taps highlight on node (playback = true)

"node-selected"
// emitted when user taps node

Methods

sankey.clearSelection();
// clears selection from chart elements

sankey.data(nodes, links);
// stores and initialises data

sankey.destroy();
// self-destruct

sankey.draw();
// draws chart to DOM

sankey.initialise();
// (re)calculates the internal values

sankey.toString();
// serialises the internal data

Properties

sankey.container;
// parent element for chart

sankey.h;
// height of chart

sankey.links;
// data for links

sankey.margin;
// defines the border zone around the canvas

sankey.nodeMoveX;
// determines if nodes can be moved left/right

sankey.nodeMoveY;
// determines if nodes can be moved up/down

sankey.nodes;
// data for nodes

sankey.nodeSize;
// node size of non-data dimension

sankey.orient;
// align nodes left-to-right, or top-to-bottom

sankey.padding;
// padding between the nodes

sankey.playback;
// controls mode of chart display

sankey.rh;
// relative height, height - margins

sankey.rw;
// relative width, width - margins

sankey.w;
// width of chart
0.4.3

3 years ago

0.4.2

3 years ago

0.3.0

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.12

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.8

4 years ago

0.1.9

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.0

4 years ago