KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
core
★ 14
Open GitHub ↗
Dbox
Download README (.md)
Explore Similar Repositories
d3-spotmatrix
:
Open Source Javascript Library to render Spot Matrix Charts using D3.js
kafka-tls-demo
:
No description available.
SNSTools
:
社工必备工具箱 Social engineering tools for SNS websites
StreamingMesh
:
No description available.
art.daneden.me
:
A home for generative art
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
core
?
Download (.md)
# Dbox.js A library to create easy reusable charts ## Dependencies Dbox uses `d3`, `d3-queue`, `d3-tip`, `lodash`, `topojson` ## Instalation Using npm ``` npm install @dboxjs/core ``` ## Usage Dbox uses one chart that allows to draw different layers ```javascript var config = { size: { width: width, height: 500, margin: { top: 20, right: 20, bottom: 30, left: 40 } }, xAxis: { scale: "time" } }; dbox .chart(config) .bindTo("#timeline-chart") .data({ csv: "assets/data/linea.csv" }) .layer(dbox.timeline) .x("year") .series(["tot"]) .color("species") .end() .draw(); ``` Check examples on [dboxjs.org](http://dboxjs.org)