All Projects â†’ ecomfe â†’ Echarts Gl

ecomfe / Echarts Gl

Licence: bsd-3-clause
Extension pack for Apache ECharts, providing globe visualization and 3D plots.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
GLSL
2045 projects
CSS
56736 projects

Projects that are alternatives of or similar to Echarts Gl

Deep Viz
A React component library, providing concise and beautiful diversity charts with Canvas, SVG, E-map, WebGL, Dom, based on data visualization experience and commercial data display practice.
Stars: ✭ 55 (-97.53%)
Mutual labels:  webgl, echarts
Ol3echarts
🌏 📊 ol3Echarts | a openlayers extension to echarts
Stars: ✭ 229 (-89.72%)
Mutual labels:  webgl, echarts
Elm 3d Scene
A high-level 3D rendering engine for Elm, with support for lighting, shadows, and realistic materials.
Stars: ✭ 167 (-92.5%)
Mutual labels:  webgl
Elm Street 404
A fun WebGL game built with Elm
Stars: ✭ 178 (-92.01%)
Mutual labels:  webgl
React Component Echarts
React component echarts. įģ„äģļåŧį™žåēĻå›žčĄ¨ã€‚
Stars: ✭ 175 (-92.14%)
Mutual labels:  echarts
Ide
Enso – a visual and textual functional programming language.
Stars: ✭ 168 (-92.46%)
Mutual labels:  webgl
Pixi Haxe
Externs of Pixi.js for Haxe
Stars: ✭ 175 (-92.14%)
Mutual labels:  webgl
Rhubarb
A WebSocket library optimized for multiplayer JS games, works on WebWorkers with binary data.
Stars: ✭ 167 (-92.5%)
Mutual labels:  webgl
Flextgl
OpenGL and Vulkan header and loader generator.
Stars: ✭ 180 (-91.92%)
Mutual labels:  webgl
React Regl
React Fiber Reconciler Renderer for Regl WebGL
Stars: ✭ 171 (-92.32%)
Mutual labels:  webgl
Webgl Month
🎓 Daily WebGL tutorials
Stars: ✭ 178 (-92.01%)
Mutual labels:  webgl
Playcanvas Ar
Fast and Easy Augmented Reality for the Web 🚀
Stars: ✭ 172 (-92.28%)
Mutual labels:  webgl
Expo Voxel
🎮đŸŒŗ Voxel Terrain made in React Native. ∛
Stars: ✭ 169 (-92.41%)
Mutual labels:  webgl
Threejs Modern App
Boilerplate and utils for a fullscreen Three.js app
Stars: ✭ 176 (-92.1%)
Mutual labels:  webgl
Rreusser.github.io
rreusser.github.io
Stars: ✭ 167 (-92.5%)
Mutual labels:  webgl
Tilemap
Rectangular tilemap implementation for PixiJS
Stars: ✭ 177 (-92.05%)
Mutual labels:  webgl
React Globe
Create beautiful and interactive React + ThreeJS globe visualizations with ease.
Stars: ✭ 167 (-92.5%)
Mutual labels:  webgl
Vue Tiny Code
čŋ™é‡Œæœ‰ä¸€ä¸Ēäģŋ Chrome 调色į›˜īŧŒæœ‰ä¸€ä¸Ē拖动排į‰ˆįš„éĄĩéĸīŧŒčŋ˜æœ‰ä¸€äē›æ–°åĨ‡įš„小į‚šå­ã€‚
Stars: ✭ 170 (-92.37%)
Mutual labels:  echarts
Encom Boardroom
📈 Web tribute to the Tron: Legacy Boardroom Scene
Stars: ✭ 2,094 (-5.97%)
Mutual labels:  webgl
Hob3l
100x Faster Slicing of SCAD Files for 3D Printing
Stars: ✭ 182 (-91.83%)
Mutual labels:  webgl

ECHARTS-GL

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

Docs

Installing

npm and webpack

npm install echarts
npm install echarts-gl

Import all

import * as echarts from 'echarts';
import 'echarts-gl';

Minimal Import

import * as echarts from 'echarts/core';
import { Scatter3DChart } from 'echarts-gl/charts';
import { Grid3DComponent } from 'echarts-gl/components';

echarts.use([Scatter3DChart, Grid3DComponent]);

Include by scripts

<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/echarts-gl/dist/echarts-gl.min.js"></script>

NOTE:

ECharts GL 2.x is compatible with ECharts 5.x. ECharts GL 1.x is compatible with ECharts 4.x.

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
        }
    }]
})

License

ECharts-GL is available under the BSD license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].