1234567891011121314151617181920212223242526272829303132333435 |
- import * as zrUtil from 'zrender/src/core/util';
- var echartsAPIList = [
- 'getDom', 'getZr', 'getWidth', 'getHeight', 'getDevicePixelRatio', 'dispatchAction', 'isDisposed',
- 'on', 'off', 'getDataURL', 'getConnectedDataURL', 'getModel', 'getOption',
- 'getViewOfComponentModel', 'getViewOfSeriesModel'
- ];
- function ExtensionAPI(chartInstance) {
- zrUtil.each(echartsAPIList, function (name) {
- this[name] = zrUtil.bind(chartInstance[name], chartInstance);
- }, this);
- }
- export default ExtensionAPI;
|