Merge pull request #2173 from niemyjski/patch-1

Removed the default padding
This commit is contained in:
Tanner Linsley 2016-03-24 14:08:24 -05:00
commit d4b6be5afe

View File

@ -32,8 +32,8 @@ module.exports = function(Chart) {
return;
}
var xPadding = width > 30 ? 5 : 2;
var yPadding = height > 30 ? 5 : 2;
var xPadding = 0;
var yPadding = 0;
var leftBoxes = helpers.where(chartInstance.boxes, function(box) {
return box.options.position === "left";