12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import Group from 'zrender/lib/graphic/Group.js';
- import * as componentUtil from '../util/component.js';
- import * as clazzUtil from '../util/clazz.js';
- var ComponentView = function () {
- function ComponentView() {
- this.group = new Group();
- this.uid = componentUtil.getUID('viewComponent');
- }
- ComponentView.prototype.init = function (ecModel, api) {};
- ComponentView.prototype.render = function (model, ecModel, api, payload) {};
- ComponentView.prototype.dispose = function (ecModel, api) {};
- ComponentView.prototype.updateView = function (model, ecModel, api, payload) {
-
- };
- ComponentView.prototype.updateLayout = function (model, ecModel, api, payload) {
-
- };
- ComponentView.prototype.updateVisual = function (model, ecModel, api, payload) {
-
- };
-
- ComponentView.prototype.toggleBlurSeries = function (seriesModels, isBlur, ecModel) {
-
- };
-
- ComponentView.prototype.eachRendered = function (cb) {
- var group = this.group;
- if (group) {
- group.traverse(cb);
- }
- };
- return ComponentView;
- }();
- ;
- clazzUtil.enableClassExtend(ComponentView);
- clazzUtil.enableClassManagement(ComponentView);
- export default ComponentView;
|