123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- 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;
|