Installation

ClChart can be used with ES6 modules, plain JavaScript and module loaders.

Install ClChart

Manual Download

You can download the latest version of clchart from the GitHub releases

npm

npm install clchart --save

Build From Source

Cloning and building the base project:

git clone git@github.com:seerline/clchart.git
cd clchart
npm install

# Then to build
npm run build

HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- 引入 ClChart 文件 -->
<script src="./clchart.js"></script>
</head>
</html>