* Set `categoryInterval` as 0 implicitly indicates that * show all labels reguardless of overlap. * @param {Object} axis axisModel.axis * @return {boolean}
(axis)
| 37968 | * @return {boolean} |
| 37969 | */ |
| 37970 | function shouldShowAllLabels(axis) { |
| 37971 | return axis.type === 'category' |
| 37972 | && getOptionCategoryInterval(axis.getLabelModel()) === 0; |
| 37973 | } |
| 37974 | |
| 37975 | /* |
| 37976 | * Licensed to the Apache Software Foundation (ASF) under one |
no test coverage detected