echarts-gl
Version:
Extension pack of ECharts providing 3D plots and globe visualization
10 lines (8 loc) • 318 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);
}