echarts-gl
Version:
Extension pack of ECharts providing 3D plots and globe visualization
8 lines • 312 B
JavaScript
// TODO ECharts GL must be imported whatever component,charts is imported.
import '../../echarts-gl';
import FlowGLSeries from './FlowGLSeries';
import FlowGLView from './FlowGLView';
export function install(registers) {
registers.registerChartView(FlowGLView);
registers.registerSeriesModel(FlowGLSeries);
}