16 lines
607 B
JavaScript
16 lines
607 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.combineActiveLabel = void 0;
|
|
var _DataUtils = require("../../../util/DataUtils");
|
|
var combineActiveLabel = (tooltipTicks, activeIndex) => {
|
|
var _tooltipTicks$n;
|
|
var n = Number(activeIndex);
|
|
if ((0, _DataUtils.isNan)(n) || activeIndex == null) {
|
|
return undefined;
|
|
}
|
|
return n >= 0 ? tooltipTicks === null || tooltipTicks === void 0 || (_tooltipTicks$n = tooltipTicks[n]) === null || _tooltipTicks$n === void 0 ? void 0 : _tooltipTicks$n.value : undefined;
|
|
};
|
|
exports.combineActiveLabel = combineActiveLabel; |