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