UNPKG

234 BPlain TextView Raw
1import Quantize from './quantize';
2
3class Quantile extends Quantize {
4 public type = 'quantile';
5 protected initCfg() {
6 this.tickMethod = 'quantile';
7 this.tickCount = 5;
8 this.nice = true;
9 }
10}
11
12export default Quantile;