# echarts-gl
**Repository Path**: Type-WYB/echarts-gl
## Basic Information
- **Project Name**: echarts-gl
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: BSD-3-Clause
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-01-11
- **Last Updated**: 2021-01-11
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# ECHARTS-GL
ECharts-GL is an extension pack of [Apache ECharts (incubating)](http://echarts.apache.org/), which providing 3D plots, globe visualization and WebGL acceleration.
## Docs
+ [Option Manual](https://echarts.apache.org/zh/option-gl.html)
+ [Gallery](http://gallery.echartsjs.com/explore.html#tags=echarts-gl)
## Installing
Use npm and webpack
```bash
npm install echarts
npm install echarts-gl
```
```js
require('echarts');
require('echarts-gl');
```
You can also use the released bundle. Which is [Universal Module Definition](https://github.com/umdjs/umd), supports AMD, CommonJS and vanilla environments.
For example, load it by script tag.
```html
```
## Basic Usage
```js
var chart = echarts.init(document.getElementById('main'));
chart.setOption({
grid3D: {},
xAxis3D: {},
yAxis3D: {},
zAxis3D: {},
series: [{
type: 'scatter3D',
symbolSize: 50,
data: [[-1, -1, -1], [0, 0, 0], [1, 1, 1]],
itemStyle: {
opacity: 1
}
}]
})
```
## Dependencies
Built on top of
+ [Apache ECharts (incubating)](http://echarts.apache.org/)
+ Canvas library [zrender](https://github.com/ecomfe/zrender)
+ WebGL library [claygl](https://github.com/pissang/claygl)。
## License
ECharts-GL is available under the BSD license.