* Remove unused layouts.defaults
* Add to migration guide
* `helpers.scaleMerge`
* `helpers.where`
+#### Layout
+
+* `Layout.defaults`
+
#### Scales
* `LogarithmicScale.minNotZero`
// Scales, Legends and Plugins all rely on the layout service and can easily register to be placed anywhere they need
// It is this service's responsibility of carrying out that layout.
export default {
- defaults: {},
/**
* Register a box to a chart.
it('should be exposed through Chart.layouts', function() {
expect(Chart.layouts).toBeDefined();
expect(typeof Chart.layouts).toBe('object');
- expect(Chart.layouts.defaults).toBeDefined();
expect(Chart.layouts.addBox).toBeDefined();
expect(Chart.layouts.removeBox).toBeDefined();
expect(Chart.layouts.configure).toBeDefined();