cione-comp-lib
Version:
`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`
20 lines (19 loc) • 678 B
JavaScript
import { __extends } from "../../../../tslib/tslib.es6.mjs";
import ComponentView from "../../view/Component.mjs";
var DataZoomView = function(_super) {
__extends(DataZoomView2, _super);
function DataZoomView2() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = DataZoomView2.type;
return _this;
}
DataZoomView2.prototype.render = function(dataZoomModel, ecModel, api, payload) {
this.dataZoomModel = dataZoomModel;
this.ecModel = ecModel;
this.api = api;
};
DataZoomView2.type = "dataZoom";
return DataZoomView2;
}(ComponentView);
var DataZoomView$1 = DataZoomView;
export { DataZoomView$1 as default };