point series handler (#13885)

This commit is contained in:
Peter Pisljar 2017-09-11 17:59:43 +02:00 committed by ppisljar
parent e8da9d9786
commit 55950c3ac8

View file

@ -49,9 +49,9 @@ export function VislibLibAxisTitleProvider() {
.getBBox();
if (config.isHorizontal()) {
svg.attr('height', bbox.height);
svg.attr('height', Math.ceil(bbox.height));
} else {
svg.attr('width', bbox.height);
svg.attr('width', Math.ceil(bbox.height));
}
});
};