mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
🐛 Fix label on horizontal chart for axis (#113452)
This commit is contained in:
parent
bbf3d4b9ca
commit
3bd687e6ca
1 changed files with 2 additions and 2 deletions
|
@ -40,9 +40,9 @@ export function getAxisName(
|
|||
defaultMessage: 'Horizontal bottom axis',
|
||||
});
|
||||
if (axis === 'yLeft') {
|
||||
return isHorizontal ? horizontalTop : verticalLeft;
|
||||
return isHorizontal ? horizontalBottom : verticalLeft;
|
||||
}
|
||||
return isHorizontal ? horizontalBottom : verticalRight;
|
||||
return isHorizontal ? horizontalTop : verticalRight;
|
||||
}
|
||||
|
||||
// min requirement for the bug:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue