Skip to content

leecade/echarts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

echarts-fis

echarts for fis.

USAGE

  • clone the project or install by bower:
$ bower install http://gitlab.pro/bdg/echarts.git

After installed, you can use it:

in fis ENV

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
$ npm i -g bower gulp; npm i
  • update & rebuild
$ gulp