https://github.com/kwhitley/apicharts
Simple charting components for external & dynamic data sources... give it a url and go!
https://github.com/kwhitley/apicharts
Last synced: 2 months ago
JSON representation
Simple charting components for external & dynamic data sources... give it a url and go!
- Host: GitHub
- URL: https://github.com/kwhitley/apicharts
- Owner: kwhitley
- License: mit
- Created: 2018-07-19T13:59:59.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-06T20:29:45.000Z (almost 7 years ago)
- Last Synced: 2024-04-14T07:11:28.103Z (about 1 year ago)
- Language: JavaScript
- Size: 112 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
apicharts (warning: preproduction = API changing constantly, stay tuned)
=======
#### Displaying charts from an API feed should be easy. Now it is.[](https://www.npmjs.com/package/apicharts)
[](https://www.npmjs.com/package/apicharts)
[](https://travis-ci.org/kwhitley/apicharts)
[](https://coveralls.io/github/kwhitley/apicharts?branch=master)
[](https://www.npmjs.com/package/apicharts)## Why?
Because sometimes we just need to visualize our data quickly and can't be
bothered to wire up the fetching/data-loading process. ApiChart handles it for you.### Example Usage 1 (local API, no data transforms needed)
```js```
### Example Usage 2 (remote API, some data transforms needed)
```js
({
date: v[0],
close: v[4],
})
}
series={[
{ name: 'close', yPath: 'close' },
]}
autodetect
timeseries
/>
```### Disclaimer: **NOT** production ready. Implementation docs/API to follow...