point series handler (#13885)

This commit is contained in:
Peter Pisljar 2017-09-11 17:59:43 +02:00 committed by GitHub
parent 2089a28d45
commit bf934252e2

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));
}
});
};