echarts-gl
Extension pack of ECharts providing 3D plots and globe visualization
Last updated 7 years ago by ecomfe-core .
Repository · Bugs · Original npm
$ cnpm install echarts-gl 
SYNC missed versions from official npm registry.

ECHARTS-GL

logo

ECharts-GL is an extension pack of echarts, which providing 3D plots, globe visualization and WebGL acceleration.

Docs

Installing

Use npm and webpack

npm install echarts
npm install echarts-gl
require('echarts');
require('echarts-gl');

You can also use the released bundle. Which is Universal Module Definition, supports AMD, CommonJS and vanilla environments.

For example, load it by script tag.

<script src="dist/echarts.min.js"></script>
<script src="dist/echarts-gl.min.js"></script>

Basic Usage

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

License

ECharts-GL is available under the BSD license.

Current Tags

  • 2.0.9                                ...           latest (3 years ago)

7 Versions

  • 2.0.9                                ...           3 years ago
  • 2.0.8                                ...           4 years ago
  • 2.0.0-rc.3                                ...           5 years ago
  • 2.0.2                                ...           5 years ago
  • 1.1.2                                ...           5 years ago
  • 1.1.1                                ...           7 years ago
  • 1.0.0-beta.6                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (17)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org