echarts-gl

Extension pack of ECharts providing globe visualization and 3D plots

Github stars Tracking Chart

ECHARTS-GL

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.

Main metrics

Overview
Name With Ownerecomfe/echarts-gl
Primary LanguageJavaScript
Program languageJavaScript (Language Count: 4)
Platform
License:BSD 3-Clause "New" or "Revised" License
所有者活动
Created At2015-02-03 04:30:48
Pushed At2024-08-19 08:59:05
Last Commit At2024-03-12 10:48:00
Release Count34
Last Release Name2.0.8 (Posted on )
First Release Name0.1.0 (Posted on )
用户参与
Stargazers Count2.7k
Watchers Count130
Fork Count852
Commits Count748
Has Issues Enabled
Issues Count517
Issue Open Count336
Pull Requests Count18
Pull Requests Open Count7
Pull Requests Close Count11
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private