123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- export * from './export/core.js';
- import { use } from './extension.js';
- import { init } from './core/echarts.js';
- import { install as CanvasRenderer } from './renderer/installCanvasRenderer.js';
- import { install as DatasetComponent } from './component/dataset/install.js';
- use([CanvasRenderer, DatasetComponent]);
- export default {
- init: function () {
- if (process.env.NODE_ENV !== 'production') {
-
- console.error("\"import echarts from 'echarts/lib/echarts.js'\" is not supported anymore. Use \"import * as echarts from 'echarts/lib/echarts.js'\" instead;");
- }
-
- return init.apply(null, arguments);
- }
- };
- import { installLabelLayout } from './label/installLabelLayout.js';
- use(installLabelLayout);
|