quantile.js 560 B

123456789101112131415161718
  1. import { __extends } from "tslib";
  2. import Quantize from './quantize';
  3. var Quantile = /** @class */ (function (_super) {
  4. __extends(Quantile, _super);
  5. function Quantile() {
  6. var _this = _super !== null && _super.apply(this, arguments) || this;
  7. _this.type = 'quantile';
  8. return _this;
  9. }
  10. Quantile.prototype.initCfg = function () {
  11. this.tickMethod = 'quantile';
  12. this.tickCount = 5;
  13. this.nice = true;
  14. };
  15. return Quantile;
  16. }(Quantize));
  17. export default Quantile;
  18. //# sourceMappingURL=quantile.js.map