mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
parent
0b9aeb58cd
commit
db0f4d2e38
1 changed files with 2 additions and 2 deletions
|
@ -49,10 +49,10 @@ export const getFlotAxisConfig = (
|
|||
position && acceptedPositions.includes(position) ? position : acceptedPositions[0];
|
||||
|
||||
if (axisType === 'number' || axisType === 'date') {
|
||||
if (min) {
|
||||
if (min !== null) {
|
||||
config.min = min;
|
||||
}
|
||||
if (max) {
|
||||
if (max !== null) {
|
||||
config.max = max;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue