UNPKG

560 BJavaScriptView Raw
1import { __extends } from "tslib";
2import Quantize from './quantize';
3var 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));
17export default Quantile;
18//# sourceMappingURL=quantile.js.map
\No newline at end of file