UNPKG

cione-comp-lib

Version:

`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`

24 lines (23 loc) 848 B
import { __extends } from "../../../../tslib/tslib.es6.mjs"; import DataZoomModel from "./DataZoomModel.mjs"; import { inheritDefaultOption } from "../../util/component.mjs"; var InsideZoomModel = function(_super) { __extends(InsideZoomModel2, _super); function InsideZoomModel2() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.type = InsideZoomModel2.type; return _this; } InsideZoomModel2.type = "dataZoom.inside"; InsideZoomModel2.defaultOption = inheritDefaultOption(DataZoomModel.defaultOption, { disabled: false, zoomLock: false, zoomOnMouseWheel: true, moveOnMouseMove: true, moveOnMouseWheel: false, preventDefaultMouseMove: true }); return InsideZoomModel2; }(DataZoomModel); var InsideZoomModel$1 = InsideZoomModel; export { InsideZoomModel$1 as default };