quantile.js 660 B

1234567891011121314151617181920
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var tslib_1 = require("tslib");
  4. var quantize_1 = require("./quantize");
  5. var Quantile = /** @class */ (function (_super) {
  6. tslib_1.__extends(Quantile, _super);
  7. function Quantile() {
  8. var _this = _super !== null && _super.apply(this, arguments) || this;
  9. _this.type = 'quantile';
  10. return _this;
  11. }
  12. Quantile.prototype.initCfg = function () {
  13. this.tickMethod = 'quantile';
  14. this.tickCount = 5;
  15. this.nice = true;
  16. };
  17. return Quantile;
  18. }(quantize_1.default));
  19. exports.default = Quantile;
  20. //# sourceMappingURL=quantile.js.map