mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
point series handler (#13885)
This commit is contained in:
parent
e8da9d9786
commit
55950c3ac8
1 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue