(properties, {inflateAmount}, ratio)
| 250 | } |
| 251 | |
| 252 | function setInflateAmount(properties, {inflateAmount}, ratio) { |
| 253 | properties.inflateAmount = inflateAmount === 'auto' |
| 254 | ? ratio === 1 ? 0.33 : 0 |
| 255 | : inflateAmount; |
| 256 | } |
| 257 | |
| 258 | export default class BarController extends DatasetController { |
| 259 |