@antv/g2
Version:
the Grammar of Graphics in Javascript
25 lines • 758 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var list_state_1 = tslib_1.__importDefault(require("./list-state"));
/**
* 图例项取消勾选的 Action
* @ignore
*/
var ListUnchecked = /** @class */ (function (_super) {
tslib_1.__extends(ListUnchecked, _super);
function ListUnchecked() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.stateName = 'unchecked';
return _this;
}
/**
* 取消勾选
*/
ListUnchecked.prototype.unchecked = function () {
this.setState();
};
return ListUnchecked;
}(list_state_1.default));
exports.default = ListUnchecked;
//# sourceMappingURL=list-unchecked.js.map