The built in controller types are:
* `Chart.controllers.line`
* `Chart.controllers.bar`
+* `Chart.controllers.horizontalBar`
* `Chart.controllers.radar`
* `Chart.controllers.doughnut`
* `Chart.controllers.polarArea`
// It looks like a bug exists when the defaults don't exist
Chart.defaults.derivedBubble = Chart.defaults.bubble;
+// Sets the default dataset config for 'derivedBubble' to be the same as the bubble dataset defaults.
+// It looks like a bug exists when the dataset defaults don't exist
+Chart.defaults.global.datasets.derivedBubble = Chart.defaults.global.datasets.bubble;
+
// I think the recommend using Chart.controllers.bubble.extend({ extensions here });
var custom = Chart.controllers.bubble.extend({
draw: function(ease) {