# echarts **Repository Path**: mirrors_leecade/echarts ## Basic Information - **Project Name**: echarts - **Description**: fork echarts for fis. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ```