https://github.com/leecade/echarts
fork echarts for fis.
https://github.com/leecade/echarts
Last synced: about 1 year ago
JSON representation
fork echarts for fis.
- Host: GitHub
- URL: https://github.com/leecade/echarts
- Owner: leecade
- Created: 2014-08-21T03:21:35.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2020-02-12T12:39:40.000Z (over 6 years ago)
- Last Synced: 2025-06-09T19:49:30.347Z (about 1 year ago)
- Language: JavaScript
- Size: 27.4 MB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# echarts-fis
[echarts](https://github.com/ecomfe/echarts) for [fis](https://github.com/fex-team/fis).
## USAGE
- clone the project or install by bower:
```bash
$ bower install http://gitlab.pro/bdg/echarts.git
```
After installed, you can use it:
in fis ENV
```javascript
var echarts = reuqire("echarts");
require("echarts/bar");
var ec = echarts.init(el);
ec.setOption({});
// async
require.async([
"echarts"
, "echarts/bar"
], function(echarts) {
var ec = echarts.init(el);
ec.setOption({});
});
```
## DEVELOP
- install deps
```bash
$ npm i -g bower gulp; npm i
```
- update & rebuild
```bash
$ gulp
```