0.0.4 • Published 6 years ago

rivela v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Rivela.js

Collection of reusable d3.js components and chart templates

npm.io

Include the library

Standalone download

You can download the latest version from here:

Using NPM

You can install in your project as a npm module:

npm install rivela

Using the CDN

You can include the hosted version from unpkg.com, with the following code:

<script src="https://unpkg.com/rivela/umd/rivela.js"></script>
<link rel="stylesheet" type="text/css" href="https://unpkg.com/rivela/umd/rivela.css">

Getting started

Here the code to create the default barchart

var chart = rivela.barchart()

d3.select('svg')
	.datum([3, 6, 2, 7])
	.call(chart)

Learn more through the examples and the API documentation.


Contribute

The library is still in progress and not in a stable stage. If you are an adventerous person and may want to contribute, here the basic development commands:

First setup

npm install

Build

grunt

Dev

grunt dev
0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago