FleetingWang / echarts-gl

Extension pack of ECharts providing globe visualization and 3D plots

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Extension pack of ECharts providing globe visualization and 3D plots

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 74.9%Language:HTML 21.2%Language:GLSL 3.8%Language:CSS 0.0%Language:Shell 0.0%