* @param {module:echarts/src/model/Model} model axisLabelModel or axisTickModel * @return {number|String} Can be null|'auto'|number|function
(model)
| 37957 | * @return {number|String} Can be null|'auto'|number|function |
| 37958 | */ |
| 37959 | function getOptionCategoryInterval(model) { |
| 37960 | var interval = model.get('interval'); |
| 37961 | return interval == null ? 'auto' : interval; |
| 37962 | } |
| 37963 | |
| 37964 | /** |
| 37965 | * Set `categoryInterval` as 0 implicitly indicates that |
no test coverage detected