UNPKG

682 BJavaScriptView Raw
1import { __extends } from "tslib";
2import ElementRangeState from './range-state';
3/**
4 * @ignore
5 * 图表元素区域 Active 的 Action
6 */
7var ElementRangeActive = /** @class */ (function (_super) {
8 __extends(ElementRangeActive, _super);
9 function ElementRangeActive() {
10 var _this = _super !== null && _super.apply(this, arguments) || this;
11 _this.stateName = 'active';
12 return _this;
13 }
14 /**
15 * 图表元素 Active
16 */
17 ElementRangeActive.prototype.active = function () {
18 this.setState();
19 };
20 return ElementRangeActive;
21}(ElementRangeState));
22export default ElementRangeActive;
23//# sourceMappingURL=range-active.js.map
\No newline at end of file