A data visualization library built on top of Plotly.js Current version : 0.2.0 Last published version : 0.1.0
This library provides fast and pre-built components to represent different kind of data in a clear and communicative way.
See documentation at http://www.dvisionlab.com/polywag
yarn add polywag
let data = {
value: [1, 2, 3, 4, 5],
timestamp: [
1598368228264, 1598368240796, 1598368248441, 1598368256295, 1598368263938
]
};
let hm = new TimeserieComponent("chart-container", {
title: "A chart",
color: "Viridis",
axisSpan: 5 * 60 * 60 * 1000 // 5 hours
});
hm.update(data);
npm run dev
Use src/index-dev.js
that will be injected in index.html
and served for dev at localhost:8080
.
npm run build
Build the lib in umd format in dist
folder.
Create template
folder into project root
Clone docdash repo (http://clenemt.github.io/docdash/) into /template folder
yarn run generate-docs
Mattia Ronzoni (https://github.com/ronzim)
Simone Manini (https://github.com/daron1337)