https://github.com/redsift/d3-rs-tree
Tree layout
https://github.com/redsift/d3-rs-tree
Last synced: about 1 year ago
JSON representation
Tree layout
- Host: GitHub
- URL: https://github.com/redsift/d3-rs-tree
- Owner: redsift
- License: mit
- Created: 2017-11-23T20:39:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-16T14:57:54.000Z (about 2 years ago)
- Last Synced: 2025-03-21T11:49:00.001Z (about 1 year ago)
- Language: HTML
- Size: 1.17 MB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# d3-rs-tree
[](https://circleci.com/gh/redsift/d3-rs-tree)
[](https://www.npmjs.com/package/@redsift/d3-rs-tree)
[](https://raw.githubusercontent.com/redsift/d3-rs-tree/master/LICENSE)
`d3-rs-tree` generate a Reingold–Tilford tree via the D3 reusable chart convention.
## Example
[View @redsift/d3-rs-tree on Codepen](http://codepen.io/collection/DgkEpa/)
### Line chart

### Multiple series

## Usage
### Browser
var chart = d3_rs_tree.html();
d3.select('body').datum([ 1, 2, 3, 10, 100 ]).call(chart);
### ES6
import { html as chart } from "@redsift/d3-rs-tree";
let eml = chart();
...
### Require
var chart = require("@redsift/d3-rs-tree");
var eml = chart.html();
...
## TODO