Skip to content

Latest commit

 

History

History
64 lines (49 loc) · 1.56 KB

README.md

File metadata and controls

64 lines (49 loc) · 1.56 KB

RN3 is a data visualization toolkit based on d3.js

Build Codecov npm npm npm npm bundle size npm

Installing

Npm

npm i rn3 --save

CDN

<script src="https://unpkg.com/rn3/src/rn3.min.js"></script>

Demo

Usage

ES6

import {
    Barchart,
} from 'rn3';

const barchart = new Barchart({
    el: '#barchart',
});

Browser

const barchart = new rn3.Barchart({
    el: '#barchart',
});

Node (CommonJs)

const rn3 = require('rn3');

const barchart = new rn3.Barchart({
    el: '#barchart',
});

Funding

Buy Me A Coffee

License

BSD-3-Clause © Stefan Nieke