echarts
Version:
A powerful charting and visualization library for browser
14 lines (10 loc) • 409 B
JavaScript
import * as echarts from '../echarts';
import './tree/TreeSeries';
import './tree/TreeView';
import './tree/treeAction';
import visualSymbol from '../visual/symbol';
import orthogonalLayout from './tree/orthogonalLayout';
import radialLayout from './tree/radialLayout';
echarts.registerVisual(visualSymbol('tree', 'circle'));
echarts.registerLayout(orthogonalLayout);
echarts.registerLayout(radialLayout);