arr.length) len = arr.length;
+
+ for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
+
+ return arr2;
+ }
+
+ function _nonIterableSpread() {
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
+ }
+
+ function _nonIterableRest() {
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
+ }
+
+ /*
+ ** Generic functions which are not dependent on ApexCharts
+ */
+ var Utils$1 = /*#__PURE__*/function () {
+ function Utils() {
+ _classCallCheck(this, Utils);
+ }
+
+ _createClass(Utils, [{
+ key: "shadeRGBColor",
+ value: function shadeRGBColor(percent, color) {
+ var f = color.split(','),
+ t = percent < 0 ? 0 : 255,
+ p = percent < 0 ? percent * -1 : percent,
+ R = parseInt(f[0].slice(4), 10),
+ G = parseInt(f[1], 10),
+ B = parseInt(f[2], 10);
+ return 'rgb(' + (Math.round((t - R) * p) + R) + ',' + (Math.round((t - G) * p) + G) + ',' + (Math.round((t - B) * p) + B) + ')';
+ }
+ }, {
+ key: "shadeHexColor",
+ value: function shadeHexColor(percent, color) {
+ var f = parseInt(color.slice(1), 16),
+ t = percent < 0 ? 0 : 255,
+ p = percent < 0 ? percent * -1 : percent,
+ R = f >> 16,
+ G = f >> 8 & 0x00ff,
+ B = f & 0x0000ff;
+ return '#' + (0x1000000 + (Math.round((t - R) * p) + R) * 0x10000 + (Math.round((t - G) * p) + G) * 0x100 + (Math.round((t - B) * p) + B)).toString(16).slice(1);
+ } // beautiful color shading blending code
+ // http://stackoverflow.com/questions/5560248/programmatically-lighten-or-darken-a-hex-color-or-rgb-and-blend-colors
+
+ }, {
+ key: "shadeColor",
+ value: function shadeColor(p, color) {
+ if (Utils.isColorHex(color)) {
+ return this.shadeHexColor(p, color);
+ } else {
+ return this.shadeRGBColor(p, color);
+ }
+ }
+ }], [{
+ key: "bind",
+ value: function bind(fn, me) {
+ return function () {
+ return fn.apply(me, arguments);
+ };
+ }
+ }, {
+ key: "isObject",
+ value: function isObject(item) {
+ return item && _typeof(item) === 'object' && !Array.isArray(item) && item != null;
+ } // Type checking that works across different window objects
+
+ }, {
+ key: "is",
+ value: function is(type, val) {
+ return Object.prototype.toString.call(val) === '[object ' + type + ']';
+ }
+ }, {
+ key: "listToArray",
+ value: function listToArray(list) {
+ var i,
+ array = [];
+
+ for (i = 0; i < list.length; i++) {
+ array[i] = list[i];
+ }
+
+ return array;
+ } // to extend defaults with user options
+ // credit: http://stackoverflow.com/questions/27936772/deep-object-merging-in-es6-es7#answer-34749873
+
+ }, {
+ key: "extend",
+ value: function extend(target, source) {
+ var _this = this;
+
+ if (typeof Object.assign !== 'function') {
+
+ (function () {
+ Object.assign = function (target) {
+
+ if (target === undefined || target === null) {
+ throw new TypeError('Cannot convert undefined or null to object');
+ }
+
+ var output = Object(target);
+
+ for (var index = 1; index < arguments.length; index++) {
+ var _source = arguments[index];
+
+ if (_source !== undefined && _source !== null) {
+ for (var nextKey in _source) {
+ if (_source.hasOwnProperty(nextKey)) {
+ output[nextKey] = _source[nextKey];
+ }
+ }
+ }
+ }
+
+ return output;
+ };
+ })();
+ }
+
+ var output = Object.assign({}, target);
+
+ if (this.isObject(target) && this.isObject(source)) {
+ Object.keys(source).forEach(function (key) {
+ if (_this.isObject(source[key])) {
+ if (!(key in target)) {
+ Object.assign(output, _defineProperty({}, key, source[key]));
+ } else {
+ output[key] = _this.extend(target[key], source[key]);
+ }
+ } else {
+ Object.assign(output, _defineProperty({}, key, source[key]));
+ }
+ });
+ }
+
+ return output;
+ }
+ }, {
+ key: "extendArray",
+ value: function extendArray(arrToExtend, resultArr) {
+ var extendedArr = [];
+ arrToExtend.map(function (item) {
+ extendedArr.push(Utils.extend(resultArr, item));
+ });
+ arrToExtend = extendedArr;
+ return arrToExtend;
+ } // If month counter exceeds 12, it starts again from 1
+
+ }, {
+ key: "monthMod",
+ value: function monthMod(month) {
+ return month % 12;
+ }
+ }, {
+ key: "clone",
+ value: function clone(source) {
+ if (Utils.is('Array', source)) {
+ var cloneResult = [];
+
+ for (var i = 0; i < source.length; i++) {
+ cloneResult[i] = this.clone(source[i]);
+ }
+
+ return cloneResult;
+ } else if (Utils.is('Null', source)) {
+ // fixes an issue where null values were converted to {}
+ return null;
+ } else if (Utils.is('Date', source)) {
+ return source;
+ } else if (_typeof(source) === 'object') {
+ var _cloneResult = {};
+
+ for (var prop in source) {
+ if (source.hasOwnProperty(prop)) {
+ _cloneResult[prop] = this.clone(source[prop]);
+ }
+ }
+
+ return _cloneResult;
+ } else {
+ return source;
+ }
+ }
+ }, {
+ key: "log10",
+ value: function log10(x) {
+ return Math.log(x) / Math.LN10;
+ }
+ }, {
+ key: "roundToBase10",
+ value: function roundToBase10(x) {
+ return Math.pow(10, Math.floor(Math.log10(x)));
+ }
+ }, {
+ key: "roundToBase",
+ value: function roundToBase(x, base) {
+ return Math.pow(base, Math.floor(Math.log(x) / Math.log(base)));
+ }
+ }, {
+ key: "parseNumber",
+ value: function parseNumber(val) {
+ if (val === null) return val;
+ return parseFloat(val);
+ }
+ }, {
+ key: "stripNumber",
+ value: function stripNumber(num) {
+ var precision = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 2;
+ return Number.isInteger(num) ? num : parseFloat(num.toPrecision(precision));
+ }
+ }, {
+ key: "randomId",
+ value: function randomId() {
+ return (Math.random() + 1).toString(36).substring(4);
+ }
+ }, {
+ key: "noExponents",
+ value: function noExponents(val) {
+ var data = String(val).split(/[eE]/);
+ if (data.length === 1) return data[0];
+ var z = '',
+ sign = val < 0 ? '-' : '',
+ str = data[0].replace('.', ''),
+ mag = Number(data[1]) + 1;
+
+ if (mag < 0) {
+ z = sign + '0.';
+
+ while (mag++) {
+ z += '0';
+ }
+
+ return z + str.replace(/^-/, '');
+ }
+
+ mag -= str.length;
+
+ while (mag--) {
+ z += '0';
+ }
+
+ return str + z;
+ }
+ }, {
+ key: "getDimensions",
+ value: function getDimensions(el) {
+ var computedStyle = getComputedStyle(el, null);
+ var elementHeight = el.clientHeight;
+ var elementWidth = el.clientWidth;
+ elementHeight -= parseFloat(computedStyle.paddingTop) + parseFloat(computedStyle.paddingBottom);
+ elementWidth -= parseFloat(computedStyle.paddingLeft) + parseFloat(computedStyle.paddingRight);
+ return [elementWidth, elementHeight];
+ }
+ }, {
+ key: "getBoundingClientRect",
+ value: function getBoundingClientRect(element) {
+ var rect = element.getBoundingClientRect();
+ return {
+ top: rect.top,
+ right: rect.right,
+ bottom: rect.bottom,
+ left: rect.left,
+ width: element.clientWidth,
+ height: element.clientHeight,
+ x: rect.left,
+ y: rect.top
+ };
+ }
+ }, {
+ key: "getLargestStringFromArr",
+ value: function getLargestStringFromArr(arr) {
+ return arr.reduce(function (a, b) {
+ if (Array.isArray(b)) {
+ b = b.reduce(function (aa, bb) {
+ return aa.length > bb.length ? aa : bb;
+ });
+ }
+
+ return a.length > b.length ? a : b;
+ }, 0);
+ } // http://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb#answer-12342275
+
+ }, {
+ key: "hexToRgba",
+ value: function hexToRgba() {
+ var hex = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '#999999';
+ var opacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0.6;
+
+ if (hex.substring(0, 1) !== '#') {
+ hex = '#999999';
+ }
+
+ var h = hex.replace('#', '');
+ h = h.match(new RegExp('(.{' + h.length / 3 + '})', 'g'));
+
+ for (var i = 0; i < h.length; i++) {
+ h[i] = parseInt(h[i].length === 1 ? h[i] + h[i] : h[i], 16);
+ }
+
+ if (typeof opacity !== 'undefined') h.push(opacity);
+ return 'rgba(' + h.join(',') + ')';
+ }
+ }, {
+ key: "getOpacityFromRGBA",
+ value: function getOpacityFromRGBA(rgba) {
+ return parseFloat(rgba.replace(/^.*,(.+)\)/, '$1'));
+ }
+ }, {
+ key: "rgb2hex",
+ value: function rgb2hex(rgb) {
+ rgb = rgb.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i);
+ return rgb && rgb.length === 4 ? '#' + ('0' + parseInt(rgb[1], 10).toString(16)).slice(-2) + ('0' + parseInt(rgb[2], 10).toString(16)).slice(-2) + ('0' + parseInt(rgb[3], 10).toString(16)).slice(-2) : '';
+ }
+ }, {
+ key: "isColorHex",
+ value: function isColorHex(color) {
+ return /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)|(^#[0-9A-F]{8}$)/i.test(color);
+ }
+ }, {
+ key: "getPolygonPos",
+ value: function getPolygonPos(size, dataPointsLen) {
+ var dotsArray = [];
+ var angle = Math.PI * 2 / dataPointsLen;
+
+ for (var i = 0; i < dataPointsLen; i++) {
+ var curPos = {};
+ curPos.x = size * Math.sin(i * angle);
+ curPos.y = -size * Math.cos(i * angle);
+ dotsArray.push(curPos);
+ }
+
+ return dotsArray;
+ }
+ }, {
+ key: "polarToCartesian",
+ value: function polarToCartesian(centerX, centerY, radius, angleInDegrees) {
+ var angleInRadians = (angleInDegrees - 90) * Math.PI / 180.0;
+ return {
+ x: centerX + radius * Math.cos(angleInRadians),
+ y: centerY + radius * Math.sin(angleInRadians)
+ };
+ }
+ }, {
+ key: "escapeString",
+ value: function escapeString(str) {
+ var escapeWith = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'x';
+ var newStr = str.toString().slice();
+ newStr = newStr.replace(/[` ~!@#$%^&*()|+\=?;:'",.<>{}[\]\\/]/gi, escapeWith);
+ return newStr;
+ }
+ }, {
+ key: "negToZero",
+ value: function negToZero(val) {
+ return val < 0 ? 0 : val;
+ }
+ }, {
+ key: "moveIndexInArray",
+ value: function moveIndexInArray(arr, old_index, new_index) {
+ if (new_index >= arr.length) {
+ var k = new_index - arr.length + 1;
+
+ while (k--) {
+ arr.push(undefined);
+ }
+ }
+
+ arr.splice(new_index, 0, arr.splice(old_index, 1)[0]);
+ return arr;
+ }
+ }, {
+ key: "extractNumber",
+ value: function extractNumber(s) {
+ return parseFloat(s.replace(/[^\d.]*/g, ''));
+ }
+ }, {
+ key: "findAncestor",
+ value: function findAncestor(el, cls) {
+ while ((el = el.parentElement) && !el.classList.contains(cls)) {
+ }
+
+ return el;
+ }
+ }, {
+ key: "setELstyles",
+ value: function setELstyles(el, styles) {
+ for (var key in styles) {
+ if (styles.hasOwnProperty(key)) {
+ el.style.key = styles[key];
+ }
+ }
+ }
+ }, {
+ key: "isNumber",
+ value: function isNumber(value) {
+ return !isNaN(value) && parseFloat(Number(value)) === value && !isNaN(parseInt(value, 10));
+ }
+ }, {
+ key: "isFloat",
+ value: function isFloat(n) {
+ return Number(n) === n && n % 1 !== 0;
+ }
+ }, {
+ key: "isSafari",
+ value: function isSafari() {
+ return /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
+ }
+ }, {
+ key: "isFirefox",
+ value: function isFirefox() {
+ return navigator.userAgent.toLowerCase().indexOf('firefox') > -1;
+ }
+ }, {
+ key: "isIE11",
+ value: function isIE11() {
+ if (window.navigator.userAgent.indexOf('MSIE') !== -1 || window.navigator.appVersion.indexOf('Trident/') > -1) {
+ return true;
+ }
+ }
+ }, {
+ key: "isIE",
+ value: function isIE() {
+ var ua = window.navigator.userAgent;
+ var msie = ua.indexOf('MSIE ');
+
+ if (msie > 0) {
+ // IE 10 or older => return version number
+ return parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10);
+ }
+
+ var trident = ua.indexOf('Trident/');
+
+ if (trident > 0) {
+ // IE 11 => return version number
+ var rv = ua.indexOf('rv:');
+ return parseInt(ua.substring(rv + 3, ua.indexOf('.', rv)), 10);
+ }
+
+ var edge = ua.indexOf('Edge/');
+
+ if (edge > 0) {
+ // Edge (IE 12+) => return version number
+ return parseInt(ua.substring(edge + 5, ua.indexOf('.', edge)), 10);
+ } // other browser
+
+
+ return false;
+ } //
+ // Find the Greatest Common Divisor of two numbers
+ //
+
+ }, {
+ key: "getGCD",
+ value: function getGCD(a, b) {
+ var p = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 7;
+ var big = Math.pow(10, p - Math.floor(Math.log10(Math.max(a, b))));
+ a = Math.round(Math.abs(a) * big);
+ b = Math.round(Math.abs(b) * big);
+
+ while (b) {
+ var t = b;
+ b = a % b;
+ a = t;
+ }
+
+ return a / big;
+ }
+ }, {
+ key: "getPrimeFactors",
+ value: function getPrimeFactors(n) {
+ var factors = [];
+ var divisor = 2;
+
+ while (n >= 2) {
+ if (n % divisor == 0) {
+ factors.push(divisor);
+ n = n / divisor;
+ } else {
+ divisor++;
+ }
+ }
+
+ return factors;
+ }
+ }, {
+ key: "mod",
+ value: function mod(a, b) {
+ var p = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 7;
+ var big = Math.pow(10, p - Math.floor(Math.log10(Math.max(a, b))));
+ a = Math.round(Math.abs(a) * big);
+ b = Math.round(Math.abs(b) * big);
+ return a % b / big;
+ }
+ }]);
+
+ return Utils;
+ }();
+
+ /**
+ * ApexCharts Animation Class.
+ *
+ * @module Animations
+ **/
+
+ var Animations = /*#__PURE__*/function () {
+ function Animations(ctx) {
+ _classCallCheck(this, Animations);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.setEasingFunctions();
+ }
+
+ _createClass(Animations, [{
+ key: "setEasingFunctions",
+ value: function setEasingFunctions() {
+ var easing;
+ if (this.w.globals.easing) return;
+ var userDefinedEasing = this.w.config.chart.animations.easing;
+
+ switch (userDefinedEasing) {
+ case 'linear':
+ {
+ easing = '-';
+ break;
+ }
+
+ case 'easein':
+ {
+ easing = '<';
+ break;
+ }
+
+ case 'easeout':
+ {
+ easing = '>';
+ break;
+ }
+
+ case 'easeinout':
+ {
+ easing = '<>';
+ break;
+ }
+
+ case 'swing':
+ {
+ easing = function easing(pos) {
+ var s = 1.70158;
+ var ret = (pos -= 1) * pos * ((s + 1) * pos + s) + 1;
+ return ret;
+ };
+
+ break;
+ }
+
+ case 'bounce':
+ {
+ easing = function easing(pos) {
+ var ret = '';
+
+ if (pos < 1 / 2.75) {
+ ret = 7.5625 * pos * pos;
+ } else if (pos < 2 / 2.75) {
+ ret = 7.5625 * (pos -= 1.5 / 2.75) * pos + 0.75;
+ } else if (pos < 2.5 / 2.75) {
+ ret = 7.5625 * (pos -= 2.25 / 2.75) * pos + 0.9375;
+ } else {
+ ret = 7.5625 * (pos -= 2.625 / 2.75) * pos + 0.984375;
+ }
+
+ return ret;
+ };
+
+ break;
+ }
+
+ case 'elastic':
+ {
+ easing = function easing(pos) {
+ if (pos === !!pos) return pos;
+ return Math.pow(2, -10 * pos) * Math.sin((pos - 0.075) * (2 * Math.PI) / 0.3) + 1;
+ };
+
+ break;
+ }
+
+ default:
+ {
+ easing = '<>';
+ }
+ }
+
+ this.w.globals.easing = easing;
+ }
+ }, {
+ key: "animateLine",
+ value: function animateLine(el, from, to, speed) {
+ el.attr(from).animate(speed).attr(to);
+ }
+ /*
+ ** Animate radius of a circle element
+ */
+
+ }, {
+ key: "animateMarker",
+ value: function animateMarker(el, from, to, speed, easing, cb) {
+ if (!from) from = 0;
+ el.attr({
+ r: from,
+ width: from,
+ height: from
+ }).animate(speed, easing).attr({
+ r: to,
+ width: to.width,
+ height: to.height
+ }).afterAll(function () {
+ cb();
+ });
+ }
+ /*
+ ** Animate radius and position of a circle element
+ */
+
+ }, {
+ key: "animateCircle",
+ value: function animateCircle(el, from, to, speed, easing) {
+ el.attr({
+ r: from.r,
+ cx: from.cx,
+ cy: from.cy
+ }).animate(speed, easing).attr({
+ r: to.r,
+ cx: to.cx,
+ cy: to.cy
+ });
+ }
+ /*
+ ** Animate rect properties
+ */
+
+ }, {
+ key: "animateRect",
+ value: function animateRect(el, from, to, speed, fn) {
+ el.attr(from).animate(speed).attr(to).afterAll(function () {
+ return fn();
+ });
+ }
+ }, {
+ key: "animatePathsGradually",
+ value: function animatePathsGradually(params) {
+ var el = params.el,
+ realIndex = params.realIndex,
+ j = params.j,
+ fill = params.fill,
+ pathFrom = params.pathFrom,
+ pathTo = params.pathTo,
+ speed = params.speed,
+ delay = params.delay;
+ var me = this;
+ var w = this.w;
+ var delayFactor = 0;
+
+ if (w.config.chart.animations.animateGradually.enabled) {
+ delayFactor = w.config.chart.animations.animateGradually.delay;
+ }
+
+ if (w.config.chart.animations.dynamicAnimation.enabled && w.globals.dataChanged && w.config.chart.type !== 'bar') {
+ // disabled due to this bug - https://github.com/apexcharts/vue-apexcharts/issues/75
+ delayFactor = 0;
+ }
+
+ me.morphSVG(el, realIndex, j, w.config.chart.type === 'line' && !w.globals.comboCharts ? 'stroke' : fill, pathFrom, pathTo, speed, delay * delayFactor);
+ }
+ }, {
+ key: "showDelayedElements",
+ value: function showDelayedElements() {
+ this.w.globals.delayedElements.forEach(function (d) {
+ var ele = d.el;
+ ele.classList.remove('apexcharts-element-hidden');
+ ele.classList.add('apexcharts-hidden-element-shown');
+ });
+ }
+ }, {
+ key: "animationCompleted",
+ value: function animationCompleted(el) {
+ var w = this.w;
+ if (w.globals.animationEnded) return;
+ w.globals.animationEnded = true;
+ this.showDelayedElements();
+
+ if (typeof w.config.chart.events.animationEnd === 'function') {
+ w.config.chart.events.animationEnd(this.ctx, {
+ el: el,
+ w: w
+ });
+ }
+ } // SVG.js animation for morphing one path to another
+
+ }, {
+ key: "morphSVG",
+ value: function morphSVG(el, realIndex, j, fill, pathFrom, pathTo, speed, delay) {
+ var _this = this;
+
+ var w = this.w;
+
+ if (!pathFrom) {
+ pathFrom = el.attr('pathFrom');
+ }
+
+ if (!pathTo) {
+ pathTo = el.attr('pathTo');
+ }
+
+ var disableAnimationForCorrupPath = function disableAnimationForCorrupPath(path) {
+ if (w.config.chart.type === 'radar') {
+ // radar chart drops the path to bottom and hence a corrup path looks ugly
+ // therefore, disable animation for such a case
+ speed = 1;
+ }
+
+ return "M 0 ".concat(w.globals.gridHeight);
+ };
+
+ if (!pathFrom || pathFrom.indexOf('undefined') > -1 || pathFrom.indexOf('NaN') > -1) {
+ pathFrom = disableAnimationForCorrupPath();
+ }
+
+ if (!pathTo || pathTo.indexOf('undefined') > -1 || pathTo.indexOf('NaN') > -1) {
+ pathTo = disableAnimationForCorrupPath();
+ }
+
+ if (!w.globals.shouldAnimate) {
+ speed = 1;
+ }
+
+ el.plot(pathFrom).animate(1, w.globals.easing, delay).plot(pathFrom).animate(speed, w.globals.easing, delay).plot(pathTo).afterAll(function () {
+ // a flag to indicate that the original mount function can return true now as animation finished here
+ if (Utils$1.isNumber(j)) {
+ if (j === w.globals.series[w.globals.maxValsInArrayIndex].length - 2 && w.globals.shouldAnimate) {
+ _this.animationCompleted(el);
+ }
+ } else if (fill !== 'none' && w.globals.shouldAnimate) {
+ if (!w.globals.comboCharts && realIndex === w.globals.series.length - 1 || w.globals.comboCharts) {
+ _this.animationCompleted(el);
+ }
+ }
+
+ _this.showDelayedElements();
+ });
+ }
+ }]);
+
+ return Animations;
+ }();
+
+ /**
+ * ApexCharts Filters Class for setting hover/active states on the paths.
+ *
+ * @module Formatters
+ **/
+
+ var Filters = /*#__PURE__*/function () {
+ function Filters(ctx) {
+ _classCallCheck(this, Filters);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ } // create a re-usable filter which can be appended other filter effects and applied to multiple elements
+
+
+ _createClass(Filters, [{
+ key: "getDefaultFilter",
+ value: function getDefaultFilter(el, i) {
+ var w = this.w;
+ el.unfilter(true);
+ var filter = new window.SVG.Filter();
+ filter.size('120%', '180%', '-5%', '-40%');
+
+ if (w.config.states.normal.filter !== 'none') {
+ this.applyFilter(el, i, w.config.states.normal.filter.type, w.config.states.normal.filter.value);
+ } else {
+ if (w.config.chart.dropShadow.enabled) {
+ this.dropShadow(el, w.config.chart.dropShadow, i);
+ }
+ }
+ }
+ }, {
+ key: "addNormalFilter",
+ value: function addNormalFilter(el, i) {
+ var w = this.w; // revert shadow if it was there
+ // but, ignore marker as marker don't have dropshadow yet
+
+ if (w.config.chart.dropShadow.enabled && !el.node.classList.contains('apexcharts-marker')) {
+ this.dropShadow(el, w.config.chart.dropShadow, i);
+ }
+ } // appends dropShadow to the filter object which can be chained with other filter effects
+
+ }, {
+ key: "addLightenFilter",
+ value: function addLightenFilter(el, i, attrs) {
+ var _this = this;
+
+ var w = this.w;
+ var intensity = attrs.intensity;
+ el.unfilter(true);
+ var filter = new window.SVG.Filter();
+ el.filter(function (add) {
+ var shadowAttr = w.config.chart.dropShadow;
+
+ if (shadowAttr.enabled) {
+ filter = _this.addShadow(add, i, shadowAttr);
+ } else {
+ filter = add;
+ }
+
+ filter.componentTransfer({
+ rgb: {
+ type: 'linear',
+ slope: 1.5,
+ intercept: intensity
+ }
+ });
+ });
+ el.filterer.node.setAttribute('filterUnits', 'userSpaceOnUse');
+
+ this._scaleFilterSize(el.filterer.node);
+ } // appends dropShadow to the filter object which can be chained with other filter effects
+
+ }, {
+ key: "addDarkenFilter",
+ value: function addDarkenFilter(el, i, attrs) {
+ var _this2 = this;
+
+ var w = this.w;
+ var intensity = attrs.intensity;
+ el.unfilter(true);
+ var filter = new window.SVG.Filter();
+ el.filter(function (add) {
+ var shadowAttr = w.config.chart.dropShadow;
+
+ if (shadowAttr.enabled) {
+ filter = _this2.addShadow(add, i, shadowAttr);
+ } else {
+ filter = add;
+ }
+
+ filter.componentTransfer({
+ rgb: {
+ type: 'linear',
+ slope: intensity
+ }
+ });
+ });
+ el.filterer.node.setAttribute('filterUnits', 'userSpaceOnUse');
+
+ this._scaleFilterSize(el.filterer.node);
+ }
+ }, {
+ key: "applyFilter",
+ value: function applyFilter(el, i, filter) {
+ var intensity = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0.5;
+
+ switch (filter) {
+ case 'none':
+ {
+ this.addNormalFilter(el, i);
+ break;
+ }
+
+ case 'lighten':
+ {
+ this.addLightenFilter(el, i, {
+ intensity: intensity
+ });
+ break;
+ }
+
+ case 'darken':
+ {
+ this.addDarkenFilter(el, i, {
+ intensity: intensity
+ });
+ break;
+ }
+ }
+ } // appends dropShadow to the filter object which can be chained with other filter effects
+
+ }, {
+ key: "addShadow",
+ value: function addShadow(add, i, attrs) {
+ var _w$config$chart$dropS;
+
+ var w = this.w;
+ var blur = attrs.blur,
+ top = attrs.top,
+ left = attrs.left,
+ color = attrs.color,
+ opacity = attrs.opacity;
+
+ if (((_w$config$chart$dropS = w.config.chart.dropShadow.enabledOnSeries) === null || _w$config$chart$dropS === void 0 ? void 0 : _w$config$chart$dropS.length) > 0) {
+ if (w.config.chart.dropShadow.enabledOnSeries.indexOf(i) === -1) {
+ return add;
+ }
+ }
+
+ var shadowBlur = add.flood(Array.isArray(color) ? color[i] : color, opacity).composite(add.sourceAlpha, 'in').offset(left, top).gaussianBlur(blur).merge(add.source);
+ return add.blend(add.source, shadowBlur);
+ } // directly adds dropShadow to the element and returns the same element.
+ // the only way it is different from the addShadow() function is that addShadow is chainable to other filters, while this function discards all filters and add dropShadow
+
+ }, {
+ key: "dropShadow",
+ value: function dropShadow(el, attrs) {
+ var _w$config$chart$dropS2;
+
+ var i = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
+ var top = attrs.top,
+ left = attrs.left,
+ blur = attrs.blur,
+ color = attrs.color,
+ opacity = attrs.opacity,
+ noUserSpaceOnUse = attrs.noUserSpaceOnUse;
+ var w = this.w;
+ el.unfilter(true);
+
+ if (Utils$1.isIE() && w.config.chart.type === 'radialBar') {
+ // in radialbar charts, dropshadow is clipping actual drawing in IE
+ return el;
+ }
+
+ if (((_w$config$chart$dropS2 = w.config.chart.dropShadow.enabledOnSeries) === null || _w$config$chart$dropS2 === void 0 ? void 0 : _w$config$chart$dropS2.length) > 0) {
+ var _w$config$chart$dropS3;
+
+ if (((_w$config$chart$dropS3 = w.config.chart.dropShadow.enabledOnSeries) === null || _w$config$chart$dropS3 === void 0 ? void 0 : _w$config$chart$dropS3.indexOf(i)) === -1) {
+ return el;
+ }
+ }
+
+ color = Array.isArray(color) ? color[i] : color;
+ el.filter(function (add) {
+ var shadowBlur = null;
+
+ if (Utils$1.isSafari() || Utils$1.isFirefox() || Utils$1.isIE()) {
+ // safari/firefox/IE have some alternative way to use this filter
+ shadowBlur = add.flood(color, opacity).composite(add.sourceAlpha, 'in').offset(left, top).gaussianBlur(blur);
+ } else {
+ shadowBlur = add.flood(color, opacity).composite(add.sourceAlpha, 'in').offset(left, top).gaussianBlur(blur).merge(add.source);
+ }
+
+ add.blend(add.source, shadowBlur);
+ });
+
+ if (!noUserSpaceOnUse) {
+ el.filterer.node.setAttribute('filterUnits', 'userSpaceOnUse');
+ }
+
+ this._scaleFilterSize(el.filterer.node);
+
+ return el;
+ }
+ }, {
+ key: "setSelectionFilter",
+ value: function setSelectionFilter(el, realIndex, dataPointIndex) {
+ var w = this.w;
+
+ if (typeof w.globals.selectedDataPoints[realIndex] !== 'undefined') {
+ if (w.globals.selectedDataPoints[realIndex].indexOf(dataPointIndex) > -1) {
+ el.node.setAttribute('selected', true);
+ var activeFilter = w.config.states.active.filter;
+
+ if (activeFilter !== 'none') {
+ this.applyFilter(el, realIndex, activeFilter.type, activeFilter.value);
+ }
+ }
+ }
+ }
+ }, {
+ key: "_scaleFilterSize",
+ value: function _scaleFilterSize(el) {
+ var setAttributes = function setAttributes(attrs) {
+ for (var key in attrs) {
+ if (attrs.hasOwnProperty(key)) {
+ el.setAttribute(key, attrs[key]);
+ }
+ }
+ };
+
+ setAttributes({
+ width: '200%',
+ height: '200%',
+ x: '-50%',
+ y: '-50%'
+ });
+ }
+ }]);
+
+ return Filters;
+ }();
+
+ /**
+ * ApexCharts Graphics Class for all drawing operations.
+ *
+ * @module Graphics
+ **/
+
+ var Graphics = /*#__PURE__*/function () {
+ function Graphics(ctx) {
+ _classCallCheck(this, Graphics);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+ /*****************************************************************************
+ * *
+ * SVG Path Rounding Function *
+ * Copyright (C) 2014 Yona Appletree *
+ * *
+ * Licensed under the Apache License, Version 2.0 (the "License"); *
+ * you may not use this file except in compliance with the License. *
+ * You may obtain a copy of the License at *
+ * *
+ * http://www.apache.org/licenses/LICENSE-2.0 *
+ * *
+ * Unless required by applicable law or agreed to in writing, software *
+ * distributed under the License is distributed on an "AS IS" BASIS, *
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
+ * See the License for the specific language governing permissions and *
+ * limitations under the License. *
+ * *
+ *****************************************************************************/
+
+ /**
+ * SVG Path rounding function. Takes an input path string and outputs a path
+ * string where all line-line corners have been rounded. Only supports absolute
+ * commands at the moment.
+ *
+ * @param pathString The SVG input path
+ * @param radius The amount to round the corners, either a value in the SVG
+ * coordinate space, or, if useFractionalRadius is true, a value
+ * from 0 to 1.
+ * @returns A new SVG path string with the rounding
+ */
+
+
+ _createClass(Graphics, [{
+ key: "roundPathCorners",
+ value: function roundPathCorners(pathString, radius) {
+ if (pathString.indexOf('NaN') > -1) pathString = '';
+
+ function moveTowardsLength(movingPoint, targetPoint, amount) {
+ var width = targetPoint.x - movingPoint.x;
+ var height = targetPoint.y - movingPoint.y;
+ var distance = Math.sqrt(width * width + height * height);
+ return moveTowardsFractional(movingPoint, targetPoint, Math.min(1, amount / distance));
+ }
+
+ function moveTowardsFractional(movingPoint, targetPoint, fraction) {
+ return {
+ x: movingPoint.x + (targetPoint.x - movingPoint.x) * fraction,
+ y: movingPoint.y + (targetPoint.y - movingPoint.y) * fraction
+ };
+ } // Adjusts the ending position of a command
+
+
+ function adjustCommand(cmd, newPoint) {
+ if (cmd.length > 2) {
+ cmd[cmd.length - 2] = newPoint.x;
+ cmd[cmd.length - 1] = newPoint.y;
+ }
+ } // Gives an {x, y} object for a command's ending position
+
+
+ function pointForCommand(cmd) {
+ return {
+ x: parseFloat(cmd[cmd.length - 2]),
+ y: parseFloat(cmd[cmd.length - 1])
+ };
+ } // Split apart the path, handing concatonated letters and numbers
+
+
+ var pathParts = pathString.split(/[,\s]/).reduce(function (parts, part) {
+ var match = part.match('([a-zA-Z])(.+)');
+
+ if (match) {
+ parts.push(match[1]);
+ parts.push(match[2]);
+ } else {
+ parts.push(part);
+ }
+
+ return parts;
+ }, []); // Group the commands with their arguments for easier handling
+
+ var commands = pathParts.reduce(function (commands, part) {
+ if (parseFloat(part) == part && commands.length) {
+ commands[commands.length - 1].push(part);
+ } else {
+ commands.push([part]);
+ }
+
+ return commands;
+ }, []); // The resulting commands, also grouped
+
+ var resultCommands = [];
+
+ if (commands.length > 1) {
+ var startPoint = pointForCommand(commands[0]); // Handle the close path case with a "virtual" closing line
+
+ var virtualCloseLine = null;
+
+ if (commands[commands.length - 1][0] == 'Z' && commands[0].length > 2) {
+ virtualCloseLine = ['L', startPoint.x, startPoint.y];
+ commands[commands.length - 1] = virtualCloseLine;
+ } // We always use the first command (but it may be mutated)
+
+
+ resultCommands.push(commands[0]);
+
+ for (var cmdIndex = 1; cmdIndex < commands.length; cmdIndex++) {
+ var prevCmd = resultCommands[resultCommands.length - 1];
+ var curCmd = commands[cmdIndex]; // Handle closing case
+
+ var nextCmd = curCmd == virtualCloseLine ? commands[1] : commands[cmdIndex + 1]; // Nasty logic to decide if this path is a candidite.
+
+ if (nextCmd && prevCmd && prevCmd.length > 2 && curCmd[0] == 'L' && nextCmd.length > 2 && nextCmd[0] == 'L') {
+ // Calc the points we're dealing with
+ var prevPoint = pointForCommand(prevCmd);
+ var curPoint = pointForCommand(curCmd);
+ var nextPoint = pointForCommand(nextCmd); // The start and end of the cuve are just our point moved towards the previous and next points, respectivly
+
+ var curveStart, curveEnd;
+ curveStart = moveTowardsLength(curPoint, prevPoint, radius);
+ curveEnd = moveTowardsLength(curPoint, nextPoint, radius); // Adjust the current command and add it
+
+ adjustCommand(curCmd, curveStart);
+ curCmd.origPoint = curPoint;
+ resultCommands.push(curCmd); // The curve control points are halfway between the start/end of the curve and
+ // the original point
+
+ var startControl = moveTowardsFractional(curveStart, curPoint, 0.5);
+ var endControl = moveTowardsFractional(curPoint, curveEnd, 0.5); // Create the curve
+
+ var curveCmd = ['C', startControl.x, startControl.y, endControl.x, endControl.y, curveEnd.x, curveEnd.y]; // Save the original point for fractional calculations
+
+ curveCmd.origPoint = curPoint;
+ resultCommands.push(curveCmd);
+ } else {
+ // Pass through commands that don't qualify
+ resultCommands.push(curCmd);
+ }
+ } // Fix up the starting point and restore the close path if the path was orignally closed
+
+
+ if (virtualCloseLine) {
+ var newStartPoint = pointForCommand(resultCommands[resultCommands.length - 1]);
+ resultCommands.push(['Z']);
+ adjustCommand(resultCommands[0], newStartPoint);
+ }
+ } else {
+ resultCommands = commands;
+ }
+
+ return resultCommands.reduce(function (str, c) {
+ return str + c.join(' ') + ' ';
+ }, '');
+ }
+ }, {
+ key: "drawLine",
+ value: function drawLine(x1, y1, x2, y2) {
+ var lineColor = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : '#a8a8a8';
+ var dashArray = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0;
+ var strokeWidth = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : null;
+ var strokeLineCap = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 'butt';
+ var w = this.w;
+ var line = w.globals.dom.Paper.line().attr({
+ x1: x1,
+ y1: y1,
+ x2: x2,
+ y2: y2,
+ stroke: lineColor,
+ 'stroke-dasharray': dashArray,
+ 'stroke-width': strokeWidth,
+ 'stroke-linecap': strokeLineCap
+ });
+ return line;
+ }
+ }, {
+ key: "drawRect",
+ value: function drawRect() {
+ var x1 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;
+ var y1 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
+ var x2 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
+ var y2 = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0;
+ var radius = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;
+ var color = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : '#fefefe';
+ var opacity = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : 1;
+ var strokeWidth = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : null;
+ var strokeColor = arguments.length > 8 && arguments[8] !== undefined ? arguments[8] : null;
+ var strokeDashArray = arguments.length > 9 && arguments[9] !== undefined ? arguments[9] : 0;
+ var w = this.w;
+ var rect = w.globals.dom.Paper.rect();
+ rect.attr({
+ x: x1,
+ y: y1,
+ width: x2 > 0 ? x2 : 0,
+ height: y2 > 0 ? y2 : 0,
+ rx: radius,
+ ry: radius,
+ opacity: opacity,
+ 'stroke-width': strokeWidth !== null ? strokeWidth : 0,
+ stroke: strokeColor !== null ? strokeColor : 'none',
+ 'stroke-dasharray': strokeDashArray
+ }); // fix apexcharts.js#1410
+
+ rect.node.setAttribute('fill', color);
+ return rect;
+ }
+ }, {
+ key: "drawPolygon",
+ value: function drawPolygon(polygonString) {
+ var stroke = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '#e1e1e1';
+ var strokeWidth = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
+ var fill = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 'none';
+ var w = this.w;
+ var polygon = w.globals.dom.Paper.polygon(polygonString).attr({
+ fill: fill,
+ stroke: stroke,
+ 'stroke-width': strokeWidth
+ });
+ return polygon;
+ }
+ }, {
+ key: "drawCircle",
+ value: function drawCircle(radius) {
+ var attrs = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
+ var w = this.w;
+ if (radius < 0) radius = 0;
+ var c = w.globals.dom.Paper.circle(radius * 2);
+
+ if (attrs !== null) {
+ c.attr(attrs);
+ }
+
+ return c;
+ }
+ }, {
+ key: "drawPath",
+ value: function drawPath(_ref) {
+ var _ref$d = _ref.d,
+ d = _ref$d === void 0 ? '' : _ref$d,
+ _ref$stroke = _ref.stroke,
+ stroke = _ref$stroke === void 0 ? '#a8a8a8' : _ref$stroke,
+ _ref$strokeWidth = _ref.strokeWidth,
+ strokeWidth = _ref$strokeWidth === void 0 ? 1 : _ref$strokeWidth,
+ fill = _ref.fill,
+ _ref$fillOpacity = _ref.fillOpacity,
+ fillOpacity = _ref$fillOpacity === void 0 ? 1 : _ref$fillOpacity,
+ _ref$strokeOpacity = _ref.strokeOpacity,
+ strokeOpacity = _ref$strokeOpacity === void 0 ? 1 : _ref$strokeOpacity,
+ classes = _ref.classes,
+ _ref$strokeLinecap = _ref.strokeLinecap,
+ strokeLinecap = _ref$strokeLinecap === void 0 ? null : _ref$strokeLinecap,
+ _ref$strokeDashArray = _ref.strokeDashArray,
+ strokeDashArray = _ref$strokeDashArray === void 0 ? 0 : _ref$strokeDashArray;
+ var w = this.w;
+
+ if (strokeLinecap === null) {
+ strokeLinecap = w.config.stroke.lineCap;
+ }
+
+ if (d.indexOf('undefined') > -1 || d.indexOf('NaN') > -1) {
+ d = "M 0 ".concat(w.globals.gridHeight);
+ }
+
+ var p = w.globals.dom.Paper.path(d).attr({
+ fill: fill,
+ 'fill-opacity': fillOpacity,
+ stroke: stroke,
+ 'stroke-opacity': strokeOpacity,
+ 'stroke-linecap': strokeLinecap,
+ 'stroke-width': strokeWidth,
+ 'stroke-dasharray': strokeDashArray,
+ class: classes
+ });
+ return p;
+ }
+ }, {
+ key: "group",
+ value: function group() {
+ var attrs = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
+ var w = this.w;
+ var g = w.globals.dom.Paper.group();
+
+ if (attrs !== null) {
+ g.attr(attrs);
+ }
+
+ return g;
+ }
+ }, {
+ key: "move",
+ value: function move(x, y) {
+ var move = ['M', x, y].join(' ');
+ return move;
+ }
+ }, {
+ key: "line",
+ value: function line(x, y) {
+ var hORv = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
+ var line = null;
+
+ if (hORv === null) {
+ line = [' L', x, y].join(' ');
+ } else if (hORv === 'H') {
+ line = [' H', x].join(' ');
+ } else if (hORv === 'V') {
+ line = [' V', y].join(' ');
+ }
+
+ return line;
+ }
+ }, {
+ key: "curve",
+ value: function curve(x1, y1, x2, y2, x, y) {
+ var curve = ['C', x1, y1, x2, y2, x, y].join(' ');
+ return curve;
+ }
+ }, {
+ key: "quadraticCurve",
+ value: function quadraticCurve(x1, y1, x, y) {
+ var curve = ['Q', x1, y1, x, y].join(' ');
+ return curve;
+ }
+ }, {
+ key: "arc",
+ value: function arc(rx, ry, axisRotation, largeArcFlag, sweepFlag, x, y) {
+ var relative = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : false;
+ var coord = 'A';
+ if (relative) coord = 'a';
+ var arc = [coord, rx, ry, axisRotation, largeArcFlag, sweepFlag, x, y].join(' ');
+ return arc;
+ }
+ /**
+ * @memberof Graphics
+ * @param {object}
+ * i = series's index
+ * realIndex = realIndex is series's actual index when it was drawn time. After several redraws, the iterating "i" may change in loops, but realIndex doesn't
+ * pathFrom = existing pathFrom to animateTo
+ * pathTo = new Path to which d attr will be animated from pathFrom to pathTo
+ * stroke = line Color
+ * strokeWidth = width of path Line
+ * fill = it can be gradient, single color, pattern or image
+ * animationDelay = how much to delay when starting animation (in milliseconds)
+ * dataChangeSpeed = for dynamic animations, when data changes
+ * className = class attribute to add
+ * @return {object} svg.js path object
+ **/
+
+ }, {
+ key: "renderPaths",
+ value: function renderPaths(_ref2) {
+ var j = _ref2.j,
+ realIndex = _ref2.realIndex,
+ pathFrom = _ref2.pathFrom,
+ pathTo = _ref2.pathTo,
+ stroke = _ref2.stroke,
+ strokeWidth = _ref2.strokeWidth,
+ strokeLinecap = _ref2.strokeLinecap,
+ fill = _ref2.fill,
+ animationDelay = _ref2.animationDelay,
+ initialSpeed = _ref2.initialSpeed,
+ dataChangeSpeed = _ref2.dataChangeSpeed,
+ className = _ref2.className,
+ _ref2$shouldClipToGri = _ref2.shouldClipToGrid,
+ shouldClipToGrid = _ref2$shouldClipToGri === void 0 ? true : _ref2$shouldClipToGri,
+ _ref2$bindEventsOnPat = _ref2.bindEventsOnPaths,
+ bindEventsOnPaths = _ref2$bindEventsOnPat === void 0 ? true : _ref2$bindEventsOnPat,
+ _ref2$drawShadow = _ref2.drawShadow,
+ drawShadow = _ref2$drawShadow === void 0 ? true : _ref2$drawShadow;
+ var w = this.w;
+ var filters = new Filters(this.ctx);
+ var anim = new Animations(this.ctx);
+ var initialAnim = this.w.config.chart.animations.enabled;
+ var dynamicAnim = initialAnim && this.w.config.chart.animations.dynamicAnimation.enabled;
+ var d;
+ var shouldAnimate = !!(initialAnim && !w.globals.resized || dynamicAnim && w.globals.dataChanged && w.globals.shouldAnimate);
+
+ if (shouldAnimate) {
+ d = pathFrom;
+ } else {
+ d = pathTo;
+ w.globals.animationEnded = true;
+ }
+
+ var strokeDashArrayOpt = w.config.stroke.dashArray;
+ var strokeDashArray = 0;
+
+ if (Array.isArray(strokeDashArrayOpt)) {
+ strokeDashArray = strokeDashArrayOpt[realIndex];
+ } else {
+ strokeDashArray = w.config.stroke.dashArray;
+ }
+
+ var el = this.drawPath({
+ d: d,
+ stroke: stroke,
+ strokeWidth: strokeWidth,
+ fill: fill,
+ fillOpacity: 1,
+ classes: className,
+ strokeLinecap: strokeLinecap,
+ strokeDashArray: strokeDashArray
+ });
+ el.attr('index', realIndex);
+
+ if (shouldClipToGrid) {
+ el.attr({
+ 'clip-path': "url(#gridRectMask".concat(w.globals.cuid, ")")
+ });
+ } // const defaultFilter = el.filterer
+
+
+ if (w.config.states.normal.filter.type !== 'none') {
+ filters.getDefaultFilter(el, realIndex);
+ } else {
+ if (w.config.chart.dropShadow.enabled && drawShadow) {
+ var shadow = w.config.chart.dropShadow;
+ filters.dropShadow(el, shadow, realIndex);
+ }
+ }
+
+ if (bindEventsOnPaths) {
+ el.node.addEventListener('mouseenter', this.pathMouseEnter.bind(this, el));
+ el.node.addEventListener('mouseleave', this.pathMouseLeave.bind(this, el));
+ el.node.addEventListener('mousedown', this.pathMouseDown.bind(this, el));
+ }
+
+ el.attr({
+ pathTo: pathTo,
+ pathFrom: pathFrom
+ });
+ var defaultAnimateOpts = {
+ el: el,
+ j: j,
+ realIndex: realIndex,
+ pathFrom: pathFrom,
+ pathTo: pathTo,
+ fill: fill,
+ strokeWidth: strokeWidth,
+ delay: animationDelay
+ };
+
+ if (initialAnim && !w.globals.resized && !w.globals.dataChanged) {
+ anim.animatePathsGradually(_objectSpread2(_objectSpread2({}, defaultAnimateOpts), {}, {
+ speed: initialSpeed
+ }));
+ } else {
+ if (w.globals.resized || !w.globals.dataChanged) {
+ anim.showDelayedElements();
+ }
+ }
+
+ if (w.globals.dataChanged && dynamicAnim && shouldAnimate) {
+ anim.animatePathsGradually(_objectSpread2(_objectSpread2({}, defaultAnimateOpts), {}, {
+ speed: dataChangeSpeed
+ }));
+ }
+
+ return el;
+ }
+ }, {
+ key: "drawPattern",
+ value: function drawPattern(style, width, height) {
+ var stroke = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '#a8a8a8';
+ var strokeWidth = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;
+ var w = this.w;
+ var p = w.globals.dom.Paper.pattern(width, height, function (add) {
+ if (style === 'horizontalLines') {
+ add.line(0, 0, height, 0).stroke({
+ color: stroke,
+ width: strokeWidth + 1
+ });
+ } else if (style === 'verticalLines') {
+ add.line(0, 0, 0, width).stroke({
+ color: stroke,
+ width: strokeWidth + 1
+ });
+ } else if (style === 'slantedLines') {
+ add.line(0, 0, width, height).stroke({
+ color: stroke,
+ width: strokeWidth
+ });
+ } else if (style === 'squares') {
+ add.rect(width, height).fill('none').stroke({
+ color: stroke,
+ width: strokeWidth
+ });
+ } else if (style === 'circles') {
+ add.circle(width).fill('none').stroke({
+ color: stroke,
+ width: strokeWidth
+ });
+ }
+ });
+ return p;
+ }
+ }, {
+ key: "drawGradient",
+ value: function drawGradient(style, gfrom, gto, opacityFrom, opacityTo) {
+ var size = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : null;
+ var stops = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : null;
+ var colorStops = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : null;
+ var i = arguments.length > 8 && arguments[8] !== undefined ? arguments[8] : 0;
+ var w = this.w;
+ var g;
+
+ if (gfrom.length < 9 && gfrom.indexOf('#') === 0) {
+ // if the hex contains alpha and is of 9 digit, skip the opacity
+ gfrom = Utils$1.hexToRgba(gfrom, opacityFrom);
+ }
+
+ if (gto.length < 9 && gto.indexOf('#') === 0) {
+ gto = Utils$1.hexToRgba(gto, opacityTo);
+ }
+
+ var stop1 = 0;
+ var stop2 = 1;
+ var stop3 = 1;
+ var stop4 = null;
+
+ if (stops !== null) {
+ stop1 = typeof stops[0] !== 'undefined' ? stops[0] / 100 : 0;
+ stop2 = typeof stops[1] !== 'undefined' ? stops[1] / 100 : 1;
+ stop3 = typeof stops[2] !== 'undefined' ? stops[2] / 100 : 1;
+ stop4 = typeof stops[3] !== 'undefined' ? stops[3] / 100 : null;
+ }
+
+ var radial = !!(w.config.chart.type === 'donut' || w.config.chart.type === 'pie' || w.config.chart.type === 'polarArea' || w.config.chart.type === 'bubble');
+
+ if (colorStops === null || colorStops.length === 0) {
+ g = w.globals.dom.Paper.gradient(radial ? 'radial' : 'linear', function (stop) {
+ stop.at(stop1, gfrom, opacityFrom);
+ stop.at(stop2, gto, opacityTo);
+ stop.at(stop3, gto, opacityTo);
+
+ if (stop4 !== null) {
+ stop.at(stop4, gfrom, opacityFrom);
+ }
+ });
+ } else {
+ g = w.globals.dom.Paper.gradient(radial ? 'radial' : 'linear', function (stop) {
+ var gradientStops = Array.isArray(colorStops[i]) ? colorStops[i] : colorStops;
+ gradientStops.forEach(function (s) {
+ stop.at(s.offset / 100, s.color, s.opacity);
+ });
+ });
+ }
+
+ if (!radial) {
+ if (style === 'vertical') {
+ g.from(0, 0).to(0, 1);
+ } else if (style === 'diagonal') {
+ g.from(0, 0).to(1, 1);
+ } else if (style === 'horizontal') {
+ g.from(0, 1).to(1, 1);
+ } else if (style === 'diagonal2') {
+ g.from(1, 0).to(0, 1);
+ }
+ } else {
+ var offx = w.globals.gridWidth / 2;
+ var offy = w.globals.gridHeight / 2;
+
+ if (w.config.chart.type !== 'bubble') {
+ g.attr({
+ gradientUnits: 'userSpaceOnUse',
+ cx: offx,
+ cy: offy,
+ r: size
+ });
+ } else {
+ g.attr({
+ cx: 0.5,
+ cy: 0.5,
+ r: 0.8,
+ fx: 0.2,
+ fy: 0.2
+ });
+ }
+ }
+
+ return g;
+ }
+ }, {
+ key: "getTextBasedOnMaxWidth",
+ value: function getTextBasedOnMaxWidth(_ref3) {
+ var text = _ref3.text,
+ maxWidth = _ref3.maxWidth,
+ fontSize = _ref3.fontSize,
+ fontFamily = _ref3.fontFamily;
+ var tRects = this.getTextRects(text, fontSize, fontFamily);
+ var wordWidth = tRects.width / text.length;
+ var wordsBasedOnWidth = Math.floor(maxWidth / wordWidth);
+
+ if (maxWidth < tRects.width) {
+ return text.slice(0, wordsBasedOnWidth - 3) + '...';
+ }
+
+ return text;
+ }
+ }, {
+ key: "drawText",
+ value: function drawText(_ref4) {
+ var _this = this;
+
+ var x = _ref4.x,
+ y = _ref4.y,
+ text = _ref4.text,
+ textAnchor = _ref4.textAnchor,
+ fontSize = _ref4.fontSize,
+ fontFamily = _ref4.fontFamily,
+ fontWeight = _ref4.fontWeight,
+ foreColor = _ref4.foreColor,
+ opacity = _ref4.opacity,
+ maxWidth = _ref4.maxWidth,
+ _ref4$cssClass = _ref4.cssClass,
+ cssClass = _ref4$cssClass === void 0 ? '' : _ref4$cssClass,
+ _ref4$isPlainText = _ref4.isPlainText,
+ isPlainText = _ref4$isPlainText === void 0 ? true : _ref4$isPlainText,
+ _ref4$dominantBaselin = _ref4.dominantBaseline,
+ dominantBaseline = _ref4$dominantBaselin === void 0 ? 'auto' : _ref4$dominantBaselin;
+ var w = this.w;
+ if (typeof text === 'undefined') text = '';
+ var truncatedText = text;
+
+ if (!textAnchor) {
+ textAnchor = 'start';
+ }
+
+ if (!foreColor || !foreColor.length) {
+ foreColor = w.config.chart.foreColor;
+ }
+
+ fontFamily = fontFamily || w.config.chart.fontFamily;
+ fontSize = fontSize || '11px';
+ fontWeight = fontWeight || 'regular';
+ var commonProps = {
+ maxWidth: maxWidth,
+ fontSize: fontSize,
+ fontFamily: fontFamily
+ };
+ var elText;
+
+ if (Array.isArray(text)) {
+ elText = w.globals.dom.Paper.text(function (add) {
+ for (var i = 0; i < text.length; i++) {
+ truncatedText = text[i];
+
+ if (maxWidth) {
+ truncatedText = _this.getTextBasedOnMaxWidth(_objectSpread2({
+ text: text[i]
+ }, commonProps));
+ }
+
+ i === 0 ? add.tspan(truncatedText) : add.tspan(truncatedText).newLine();
+ }
+ });
+ } else {
+ if (maxWidth) {
+ truncatedText = this.getTextBasedOnMaxWidth(_objectSpread2({
+ text: text
+ }, commonProps));
+ }
+
+ elText = isPlainText ? w.globals.dom.Paper.plain(text) : w.globals.dom.Paper.text(function (add) {
+ return add.tspan(truncatedText);
+ });
+ }
+
+ elText.attr({
+ x: x,
+ y: y,
+ 'text-anchor': textAnchor,
+ 'dominant-baseline': dominantBaseline,
+ 'font-size': fontSize,
+ 'font-family': fontFamily,
+ 'font-weight': fontWeight,
+ fill: foreColor,
+ class: 'apexcharts-text ' + cssClass
+ });
+ elText.node.style.fontFamily = fontFamily;
+ elText.node.style.opacity = opacity;
+ return elText;
+ }
+ /**
+ * Creates a group with given attributes.
+ * @param {number} x - The x-coordinate of the group.
+ * @param {number} y - The y-coordinate of the group.
+ * @param {Array} lines - The lines to be added to the group.
+ * @param {Object} opts - The options for the group.
+ * @returns {Object} The created group.
+ */
+
+ }, {
+ key: "createGroupWithAttributes",
+ value: function createGroupWithAttributes(x, y, lines, opts) {
+ var elPoint = this.group();
+ lines.forEach(function (line) {
+ return elPoint.add(line);
+ });
+ elPoint.attr({
+ class: opts.class ? opts.class : '',
+ cy: y,
+ cx: x
+ });
+ return elPoint;
+ }
+ /**
+ * Draws a plus sign at the given coordinates.
+ * @param {number} x - The x-coordinate of the plus sign.
+ * @param {number} y - The y-coordinate of the plus sign.
+ * @param {number} size - The size of the plus sign.
+ * @param {Object} opts - The options for the plus sign.
+ * @returns {Object} The created plus sign.
+ */
+
+ }, {
+ key: "drawPlus",
+ value: function drawPlus(x, y, size, opts) {
+ var halfSize = size / 2;
+ var line1 = this.drawLine(x, y - halfSize, x, y + halfSize, opts.pointStrokeColor, opts.pointStrokeDashArray, opts.pointStrokeWidth, opts.pointStrokeLineCap);
+ var line2 = this.drawLine(x - halfSize, y, x + halfSize, y, opts.pointStrokeColor, opts.pointStrokeDashArray, opts.pointStrokeWidth, opts.pointStrokeLineCap);
+ return this.createGroupWithAttributes(x, y, [line1, line2], opts);
+ }
+ /**
+ * Draws an 'X' at the given coordinates.
+ * @param {number} x - The x-coordinate of the 'X'.
+ * @param {number} y - The y-coordinate of the 'X'.
+ * @param {number} size - The size of the 'X'.
+ * @param {Object} opts - The options for the 'X'.
+ * @returns {Object} The created 'X'.
+ */
+
+ }, {
+ key: "drawX",
+ value: function drawX(x, y, size, opts) {
+ var halfSize = size / 2;
+ var line1 = this.drawLine(x - halfSize, y - halfSize, x + halfSize, y + halfSize, opts.pointStrokeColor, opts.pointStrokeDashArray, opts.pointStrokeWidth, opts.pointStrokeLineCap);
+ var line2 = this.drawLine(x - halfSize, y + halfSize, x + halfSize, y - halfSize, opts.pointStrokeColor, opts.pointStrokeDashArray, opts.pointStrokeWidth, opts.pointStrokeLineCap);
+ return this.createGroupWithAttributes(x, y, [line1, line2], opts);
+ }
+ }, {
+ key: "drawMarker",
+ value: function drawMarker(x, y, opts) {
+ x = x || 0;
+ var size = opts.pSize || 0;
+ var elPoint = null;
+
+ if ((opts === null || opts === void 0 ? void 0 : opts.shape) === 'X' || (opts === null || opts === void 0 ? void 0 : opts.shape) === 'x') {
+ elPoint = this.drawX(x, y, size, opts);
+ } else if ((opts === null || opts === void 0 ? void 0 : opts.shape) === 'plus' || (opts === null || opts === void 0 ? void 0 : opts.shape) === '+') {
+ elPoint = this.drawPlus(x, y, size, opts);
+ } else if (opts.shape === 'square' || opts.shape === 'rect') {
+ var radius = opts.pRadius === undefined ? size / 2 : opts.pRadius;
+
+ if (y === null || !size) {
+ size = 0;
+ radius = 0;
+ }
+
+ var nSize = size * 1.2 + radius;
+ var p = this.drawRect(nSize, nSize, nSize, nSize, radius);
+ p.attr({
+ x: x - nSize / 2,
+ y: y - nSize / 2,
+ cx: x,
+ cy: y,
+ class: opts.class ? opts.class : '',
+ fill: opts.pointFillColor,
+ 'fill-opacity': opts.pointFillOpacity ? opts.pointFillOpacity : 1,
+ stroke: opts.pointStrokeColor,
+ 'stroke-width': opts.pointStrokeWidth ? opts.pointStrokeWidth : 0,
+ 'stroke-opacity': opts.pointStrokeOpacity ? opts.pointStrokeOpacity : 1
+ });
+ elPoint = p;
+ } else if (opts.shape === 'circle' || !opts.shape) {
+ if (!Utils$1.isNumber(y)) {
+ size = 0;
+ y = 0;
+ } // let nSize = size - opts.pRadius / 2 < 0 ? 0 : size - opts.pRadius / 2
+
+
+ elPoint = this.drawCircle(size, {
+ cx: x,
+ cy: y,
+ class: opts.class ? opts.class : '',
+ stroke: opts.pointStrokeColor,
+ fill: opts.pointFillColor,
+ 'fill-opacity': opts.pointFillOpacity ? opts.pointFillOpacity : 1,
+ 'stroke-width': opts.pointStrokeWidth ? opts.pointStrokeWidth : 0,
+ 'stroke-opacity': opts.pointStrokeOpacity ? opts.pointStrokeOpacity : 1
+ });
+ }
+
+ return elPoint;
+ }
+ }, {
+ key: "pathMouseEnter",
+ value: function pathMouseEnter(path, e) {
+ var w = this.w;
+ var filters = new Filters(this.ctx);
+ var i = parseInt(path.node.getAttribute('index'), 10);
+ var j = parseInt(path.node.getAttribute('j'), 10);
+
+ if (typeof w.config.chart.events.dataPointMouseEnter === 'function') {
+ w.config.chart.events.dataPointMouseEnter(e, this.ctx, {
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ });
+ }
+
+ this.ctx.events.fireEvent('dataPointMouseEnter', [e, this.ctx, {
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ }]);
+
+ if (w.config.states.active.filter.type !== 'none') {
+ if (path.node.getAttribute('selected') === 'true') {
+ return;
+ }
+ }
+
+ if (w.config.states.hover.filter.type !== 'none') {
+ if (!w.globals.isTouchDevice) {
+ var hoverFilter = w.config.states.hover.filter;
+ filters.applyFilter(path, i, hoverFilter.type, hoverFilter.value);
+ }
+ }
+ }
+ }, {
+ key: "pathMouseLeave",
+ value: function pathMouseLeave(path, e) {
+ var w = this.w;
+ var filters = new Filters(this.ctx);
+ var i = parseInt(path.node.getAttribute('index'), 10);
+ var j = parseInt(path.node.getAttribute('j'), 10);
+
+ if (typeof w.config.chart.events.dataPointMouseLeave === 'function') {
+ w.config.chart.events.dataPointMouseLeave(e, this.ctx, {
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ });
+ }
+
+ this.ctx.events.fireEvent('dataPointMouseLeave', [e, this.ctx, {
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ }]);
+
+ if (w.config.states.active.filter.type !== 'none') {
+ if (path.node.getAttribute('selected') === 'true') {
+ return;
+ }
+ }
+
+ if (w.config.states.hover.filter.type !== 'none') {
+ filters.getDefaultFilter(path, i);
+ }
+ }
+ }, {
+ key: "pathMouseDown",
+ value: function pathMouseDown(path, e) {
+ var w = this.w;
+ var filters = new Filters(this.ctx);
+ var i = parseInt(path.node.getAttribute('index'), 10);
+ var j = parseInt(path.node.getAttribute('j'), 10);
+ var selected = 'false';
+
+ if (path.node.getAttribute('selected') === 'true') {
+ path.node.setAttribute('selected', 'false');
+
+ if (w.globals.selectedDataPoints[i].indexOf(j) > -1) {
+ var index = w.globals.selectedDataPoints[i].indexOf(j);
+ w.globals.selectedDataPoints[i].splice(index, 1);
+ }
+ } else {
+ if (!w.config.states.active.allowMultipleDataPointsSelection && w.globals.selectedDataPoints.length > 0) {
+ w.globals.selectedDataPoints = [];
+ var elPaths = w.globals.dom.Paper.select('.apexcharts-series path').members;
+ var elCircles = w.globals.dom.Paper.select('.apexcharts-series circle, .apexcharts-series rect').members;
+
+ var deSelect = function deSelect(els) {
+ Array.prototype.forEach.call(els, function (el) {
+ el.node.setAttribute('selected', 'false');
+ filters.getDefaultFilter(el, i);
+ });
+ };
+
+ deSelect(elPaths);
+ deSelect(elCircles);
+ }
+
+ path.node.setAttribute('selected', 'true');
+ selected = 'true';
+
+ if (typeof w.globals.selectedDataPoints[i] === 'undefined') {
+ w.globals.selectedDataPoints[i] = [];
+ }
+
+ w.globals.selectedDataPoints[i].push(j);
+ }
+
+ if (selected === 'true') {
+ var activeFilter = w.config.states.active.filter;
+
+ if (activeFilter !== 'none') {
+ filters.applyFilter(path, i, activeFilter.type, activeFilter.value);
+ } else {
+ // Reapply the hover filter in case it was removed by `deselect`when there is no active filter and it is not a touch device
+ if (w.config.states.hover.filter !== 'none') {
+ if (!w.globals.isTouchDevice) {
+ var hoverFilter = w.config.states.hover.filter;
+ filters.applyFilter(path, i, hoverFilter.type, hoverFilter.value);
+ }
+ }
+ }
+ } else {
+ // If the item was deselected, apply hover state filter if it is not a touch device
+ if (w.config.states.active.filter.type !== 'none') {
+ if (w.config.states.hover.filter.type !== 'none' && !w.globals.isTouchDevice) {
+ var hoverFilter = w.config.states.hover.filter;
+ filters.applyFilter(path, i, hoverFilter.type, hoverFilter.value);
+ } else {
+ filters.getDefaultFilter(path, i);
+ }
+ }
+ }
+
+ if (typeof w.config.chart.events.dataPointSelection === 'function') {
+ w.config.chart.events.dataPointSelection(e, this.ctx, {
+ selectedDataPoints: w.globals.selectedDataPoints,
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ });
+ }
+
+ if (e) {
+ this.ctx.events.fireEvent('dataPointSelection', [e, this.ctx, {
+ selectedDataPoints: w.globals.selectedDataPoints,
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ }]);
+ }
+ }
+ }, {
+ key: "rotateAroundCenter",
+ value: function rotateAroundCenter(el) {
+ var coord = {};
+
+ if (el && typeof el.getBBox === 'function') {
+ coord = el.getBBox();
+ }
+
+ var x = coord.x + coord.width / 2;
+ var y = coord.y + coord.height / 2;
+ return {
+ x: x,
+ y: y
+ };
+ }
+ }, {
+ key: "getTextRects",
+ value: function getTextRects(text, fontSize, fontFamily, transform) {
+ var useBBox = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true;
+ var w = this.w;
+ var virtualText = this.drawText({
+ x: -200,
+ y: -200,
+ text: text,
+ textAnchor: 'start',
+ fontSize: fontSize,
+ fontFamily: fontFamily,
+ foreColor: '#fff',
+ opacity: 0
+ });
+
+ if (transform) {
+ virtualText.attr('transform', transform);
+ }
+
+ w.globals.dom.Paper.add(virtualText);
+ var rect = virtualText.bbox();
+
+ if (!useBBox) {
+ rect = virtualText.node.getBoundingClientRect();
+ }
+
+ virtualText.remove();
+ return {
+ width: rect.width,
+ height: rect.height
+ };
+ }
+ /**
+ * append ... to long text
+ * http://stackoverflow.com/questions/9241315/trimming-text-to-a-given-pixel-width-in-svg
+ * @memberof Graphics
+ **/
+
+ }, {
+ key: "placeTextWithEllipsis",
+ value: function placeTextWithEllipsis(textObj, textString, width) {
+ if (typeof textObj.getComputedTextLength !== 'function') return;
+ textObj.textContent = textString;
+
+ if (textString.length > 0) {
+ // ellipsis is needed
+ if (textObj.getComputedTextLength() >= width / 1.1) {
+ for (var x = textString.length - 3; x > 0; x -= 3) {
+ if (textObj.getSubStringLength(0, x) <= width / 1.1) {
+ textObj.textContent = textString.substring(0, x) + '...';
+ return;
+ }
+ }
+
+ textObj.textContent = '.'; // can't place at all
+ }
+ }
+ }
+ }], [{
+ key: "setAttrs",
+ value: function setAttrs(el, attrs) {
+ for (var key in attrs) {
+ if (attrs.hasOwnProperty(key)) {
+ el.setAttribute(key, attrs[key]);
+ }
+ }
+ }
+ }]);
+
+ return Graphics;
+ }();
+
+ /*
+ ** Util functions which are dependent on ApexCharts instance
+ */
+ var CoreUtils = /*#__PURE__*/function () {
+ function CoreUtils(ctx) {
+ _classCallCheck(this, CoreUtils);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(CoreUtils, [{
+ key: "getStackedSeriesTotals",
+ value:
+ /**
+ * @memberof CoreUtils
+ * returns the sum of all individual values in a multiple stacked series
+ * Eg. w.globals.series = [[32,33,43,12], [2,3,5,1]]
+ * @return [34,36,48,13]
+ **/
+ function getStackedSeriesTotals() {
+ var excludedSeriesIndices = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
+ var w = this.w;
+ var total = [];
+ if (w.globals.series.length === 0) return total;
+
+ for (var i = 0; i < w.globals.series[w.globals.maxValsInArrayIndex].length; i++) {
+ var t = 0;
+
+ for (var j = 0; j < w.globals.series.length; j++) {
+ if (typeof w.globals.series[j][i] !== 'undefined' && excludedSeriesIndices.indexOf(j) === -1) {
+ t += w.globals.series[j][i];
+ }
+ }
+
+ total.push(t);
+ }
+
+ return total;
+ } // get total of the all values inside all series
+
+ }, {
+ key: "getSeriesTotalByIndex",
+ value: function getSeriesTotalByIndex() {
+ var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
+
+ if (index === null) {
+ // non-plot chart types - pie / donut / circle
+ return this.w.config.series.reduce(function (acc, cur) {
+ return acc + cur;
+ }, 0);
+ } else {
+ // axis charts - supporting multiple series
+ return this.w.globals.series[index].reduce(function (acc, cur) {
+ return acc + cur;
+ }, 0);
+ }
+ }
+ /**
+ * @memberof CoreUtils
+ * returns the sum of values in a multiple stacked grouped charts
+ * Eg. w.globals.series = [[32,33,43,12], [2,3,5,1], [43, 23, 34, 22]]
+ * series 1 and 2 are in a group, while series 3 is in another group
+ * @return [[34, 36, 48, 12], [43, 23, 34, 22]]
+ **/
+
+ }, {
+ key: "getStackedSeriesTotalsByGroups",
+ value: function getStackedSeriesTotalsByGroups() {
+ var _this = this;
+
+ var w = this.w;
+ var total = [];
+ w.globals.seriesGroups.forEach(function (sg) {
+ var includedIndexes = [];
+ w.config.series.forEach(function (s, si) {
+ if (sg.indexOf(s.name) > -1) {
+ includedIndexes.push(si);
+ }
+ });
+ var excludedIndices = w.globals.series.map(function (_, fi) {
+ return includedIndexes.indexOf(fi) === -1 ? fi : -1;
+ }).filter(function (f) {
+ return f !== -1;
+ });
+ total.push(_this.getStackedSeriesTotals(excludedIndices));
+ });
+ return total;
+ }
+ }, {
+ key: "isSeriesNull",
+ value: function isSeriesNull() {
+ var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
+ var r = [];
+
+ if (index === null) {
+ // non-plot chart types - pie / donut / circle
+ r = this.w.config.series.filter(function (d) {
+ return d !== null;
+ });
+ } else {
+ // axis charts - supporting multiple series
+ r = this.w.config.series[index].data.filter(function (d) {
+ return d !== null;
+ });
+ }
+
+ return r.length === 0;
+ }
+ }, {
+ key: "seriesHaveSameValues",
+ value: function seriesHaveSameValues(index) {
+ return this.w.globals.series[index].every(function (val, i, arr) {
+ return val === arr[0];
+ });
+ }
+ }, {
+ key: "getCategoryLabels",
+ value: function getCategoryLabels(labels) {
+ var w = this.w;
+ var catLabels = labels.slice();
+
+ if (w.config.xaxis.convertedCatToNumeric) {
+ catLabels = labels.map(function (i, li) {
+ return w.config.xaxis.labels.formatter(i - w.globals.minX + 1);
+ });
+ }
+
+ return catLabels;
+ } // maxValsInArrayIndex is the index of series[] which has the largest number of items
+
+ }, {
+ key: "getLargestSeries",
+ value: function getLargestSeries() {
+ var w = this.w;
+ w.globals.maxValsInArrayIndex = w.globals.series.map(function (a) {
+ return a.length;
+ }).indexOf(Math.max.apply(Math, w.globals.series.map(function (a) {
+ return a.length;
+ })));
+ }
+ }, {
+ key: "getLargestMarkerSize",
+ value: function getLargestMarkerSize() {
+ var w = this.w;
+ var size = 0;
+ w.globals.markers.size.forEach(function (m) {
+ size = Math.max(size, m);
+ });
+
+ if (w.config.markers.discrete && w.config.markers.discrete.length) {
+ w.config.markers.discrete.forEach(function (m) {
+ size = Math.max(size, m.size);
+ });
+ }
+
+ if (size > 0) {
+ size += w.config.markers.hover.sizeOffset + 1;
+ }
+
+ w.globals.markers.largestSize = size;
+ return size;
+ }
+ /**
+ * @memberof Core
+ * returns the sum of all values in a series
+ * Eg. w.globals.series = [[32,33,43,12], [2,3,5,1]]
+ * @return [120, 11]
+ **/
+
+ }, {
+ key: "getSeriesTotals",
+ value: function getSeriesTotals() {
+ var w = this.w;
+ w.globals.seriesTotals = w.globals.series.map(function (ser, index) {
+ var total = 0;
+
+ if (Array.isArray(ser)) {
+ for (var j = 0; j < ser.length; j++) {
+ total += ser[j];
+ }
+ } else {
+ // for pie/donuts/gauges
+ total += ser;
+ }
+
+ return total;
+ });
+ }
+ }, {
+ key: "getSeriesTotalsXRange",
+ value: function getSeriesTotalsXRange(minX, maxX) {
+ var w = this.w;
+ var seriesTotalsXRange = w.globals.series.map(function (ser, index) {
+ var total = 0;
+
+ for (var j = 0; j < ser.length; j++) {
+ if (w.globals.seriesX[index][j] > minX && w.globals.seriesX[index][j] < maxX) {
+ total += ser[j];
+ }
+ }
+
+ return total;
+ });
+ return seriesTotalsXRange;
+ }
+ /**
+ * @memberof CoreUtils
+ * returns the percentage value of all individual values which can be used in a 100% stacked series
+ * Eg. w.globals.series = [[32, 33, 43, 12], [2, 3, 5, 1]]
+ * @return [[94.11, 91.66, 89.58, 92.30], [5.88, 8.33, 10.41, 7.7]]
+ **/
+
+ }, {
+ key: "getPercentSeries",
+ value: function getPercentSeries() {
+ var w = this.w;
+ w.globals.seriesPercent = w.globals.series.map(function (ser, index) {
+ var seriesPercent = [];
+
+ if (Array.isArray(ser)) {
+ for (var j = 0; j < ser.length; j++) {
+ var total = w.globals.stackedSeriesTotals[j];
+ var percent = 0;
+
+ if (total) {
+ percent = 100 * ser[j] / total;
+ }
+
+ seriesPercent.push(percent);
+ }
+ } else {
+ var _total = w.globals.seriesTotals.reduce(function (acc, val) {
+ return acc + val;
+ }, 0);
+
+ var _percent = 100 * ser / _total;
+
+ seriesPercent.push(_percent);
+ }
+
+ return seriesPercent;
+ });
+ }
+ }, {
+ key: "getCalculatedRatios",
+ value: function getCalculatedRatios() {
+ var _this2 = this;
+
+ var w = this.w;
+ var gl = w.globals;
+ var yRatio = [];
+ var invertedYRatio = 0;
+ var xRatio = 0;
+ var invertedXRatio = 0;
+ var zRatio = 0;
+ var baseLineY = [];
+ var baseLineInvertedY = 0.1;
+ var baseLineX = 0;
+ gl.yRange = [];
+
+ if (gl.isMultipleYAxis) {
+ for (var i = 0; i < gl.minYArr.length; i++) {
+ gl.yRange.push(Math.abs(gl.minYArr[i] - gl.maxYArr[i]));
+ baseLineY.push(0);
+ }
+ } else {
+ gl.yRange.push(Math.abs(gl.minY - gl.maxY));
+ }
+
+ gl.xRange = Math.abs(gl.maxX - gl.minX);
+ gl.zRange = Math.abs(gl.maxZ - gl.minZ); // multiple y axis
+
+ for (var _i = 0; _i < gl.yRange.length; _i++) {
+ yRatio.push(gl.yRange[_i] / gl.gridHeight);
+ }
+
+ xRatio = gl.xRange / gl.gridWidth;
+ invertedYRatio = gl.yRange / gl.gridWidth;
+ invertedXRatio = gl.xRange / gl.gridHeight;
+ zRatio = gl.zRange / gl.gridHeight * 16;
+
+ if (!zRatio) {
+ zRatio = 1;
+ }
+
+ if (gl.minY !== Number.MIN_VALUE && Math.abs(gl.minY) !== 0) {
+ // Negative numbers present in series
+ gl.hasNegs = true;
+ } // Check we have a map as series may still to be added/updated.
+
+
+ if (w.globals.seriesYAxisReverseMap.length > 0) {
+ var scaleBaseLineYScale = function scaleBaseLineYScale(y, i) {
+ var yAxis = w.config.yaxis[w.globals.seriesYAxisReverseMap[i]];
+ var sign = y < 0 ? -1 : 1;
+ y = Math.abs(y);
+
+ if (yAxis.logarithmic) {
+ y = _this2.getBaseLog(yAxis.logBase, y);
+ }
+
+ return -sign * y / yRatio[i];
+ };
+
+ if (gl.isMultipleYAxis) {
+ baseLineY = []; // baseline variables is the 0 of the yaxis which will be needed when there are negatives
+
+ for (var _i2 = 0; _i2 < yRatio.length; _i2++) {
+ baseLineY.push(scaleBaseLineYScale(gl.minYArr[_i2], _i2));
+ }
+ } else {
+ baseLineY = [];
+ baseLineY.push(scaleBaseLineYScale(gl.minY, 0));
+
+ if (gl.minY !== Number.MIN_VALUE && Math.abs(gl.minY) !== 0) {
+ baseLineInvertedY = -gl.minY / invertedYRatio; // this is for bar chart
+
+ baseLineX = gl.minX / xRatio;
+ }
+ }
+ } else {
+ baseLineY = [];
+ baseLineY.push(0);
+ baseLineInvertedY = 0;
+ baseLineX = 0;
+ }
+
+ return {
+ yRatio: yRatio,
+ invertedYRatio: invertedYRatio,
+ zRatio: zRatio,
+ xRatio: xRatio,
+ invertedXRatio: invertedXRatio,
+ baseLineInvertedY: baseLineInvertedY,
+ baseLineY: baseLineY,
+ baseLineX: baseLineX
+ };
+ }
+ }, {
+ key: "getLogSeries",
+ value: function getLogSeries(series) {
+ var _this3 = this;
+
+ var w = this.w;
+ w.globals.seriesLog = series.map(function (s, i) {
+ var yAxisIndex = w.globals.seriesYAxisReverseMap[i];
+
+ if (w.config.yaxis[yAxisIndex] && w.config.yaxis[yAxisIndex].logarithmic) {
+ return s.map(function (d) {
+ if (d === null) return null;
+ return _this3.getLogVal(w.config.yaxis[yAxisIndex].logBase, d, i);
+ });
+ } else {
+ return s;
+ }
+ });
+ return w.globals.invalidLogScale ? series : w.globals.seriesLog;
+ }
+ }, {
+ key: "getBaseLog",
+ value: function getBaseLog(base, value) {
+ return Math.log(value) / Math.log(base);
+ }
+ }, {
+ key: "getLogVal",
+ value: function getLogVal(b, d, seriesIndex) {
+ if (d <= 0) {
+ return 0; // Should be Number.NEGATIVE_INFINITY
+ }
+
+ var w = this.w;
+ var min_log_val = w.globals.minYArr[seriesIndex] === 0 ? -1 // make sure we dont calculate log of 0
+ : this.getBaseLog(b, w.globals.minYArr[seriesIndex]);
+ var max_log_val = w.globals.maxYArr[seriesIndex] === 0 ? 0 // make sure we dont calculate log of 0
+ : this.getBaseLog(b, w.globals.maxYArr[seriesIndex]);
+ var number_of_height_levels = max_log_val - min_log_val;
+ if (d < 1) return d / number_of_height_levels;
+ var log_height_value = this.getBaseLog(b, d) - min_log_val;
+ return log_height_value / number_of_height_levels;
+ }
+ }, {
+ key: "getLogYRatios",
+ value: function getLogYRatios(yRatio) {
+ var _this4 = this;
+
+ var w = this.w;
+ var gl = this.w.globals;
+ gl.yLogRatio = yRatio.slice();
+ gl.logYRange = gl.yRange.map(function (yRange, i) {
+ var yAxisIndex = w.globals.seriesYAxisReverseMap[i];
+
+ if (w.config.yaxis[yAxisIndex] && _this4.w.config.yaxis[yAxisIndex].logarithmic) {
+ var maxY = -Number.MAX_VALUE;
+ var minY = Number.MIN_VALUE;
+ var range = 1;
+ gl.seriesLog.forEach(function (s, si) {
+ s.forEach(function (v) {
+ if (w.config.yaxis[si] && w.config.yaxis[si].logarithmic) {
+ maxY = Math.max(v, maxY);
+ minY = Math.min(v, minY);
+ }
+ });
+ });
+ range = Math.pow(gl.yRange[i], Math.abs(minY - maxY) / gl.yRange[i]);
+ gl.yLogRatio[i] = range / gl.gridHeight;
+ return range;
+ }
+ });
+ return gl.invalidLogScale ? yRatio.slice() : gl.yLogRatio;
+ } // Some config objects can be array - and we need to extend them correctly
+
+ }], [{
+ key: "checkComboSeries",
+ value: function checkComboSeries(series, chartType) {
+ var comboCharts = false;
+ var comboBarCount = 0;
+ var comboCount = 0;
+
+ if (chartType === undefined) {
+ chartType = 'line';
+ } // Check if user specified a type in series that may make us a combo chart.
+ // The default type for chart is "line" and the default for series is the
+ // chart type, therefore, if the types of all series match the chart type,
+ // this should not be considered a combo chart.
+
+
+ if (series.length && typeof series[0].type !== 'undefined') {
+ series.forEach(function (s) {
+ if (s.type === 'bar' || s.type === 'column' || s.type === 'candlestick' || s.type === 'boxPlot') {
+ comboBarCount++;
+ }
+
+ if (typeof s.type !== 'undefined' && s.type !== chartType) {
+ comboCount++;
+ }
+ });
+ }
+
+ if (comboCount > 0) {
+ comboCharts = true;
+ }
+
+ return {
+ comboBarCount: comboBarCount,
+ comboCharts: comboCharts
+ };
+ }
+ }, {
+ key: "extendArrayProps",
+ value: function extendArrayProps(configInstance, options, w) {
+ var _options, _options2;
+
+ if ((_options = options) !== null && _options !== void 0 && _options.yaxis) {
+ options = configInstance.extendYAxis(options, w);
+ }
+
+ if ((_options2 = options) !== null && _options2 !== void 0 && _options2.annotations) {
+ var _options3, _options3$annotations, _options4, _options4$annotations;
+
+ if (options.annotations.yaxis) {
+ options = configInstance.extendYAxisAnnotations(options);
+ }
+
+ if ((_options3 = options) !== null && _options3 !== void 0 && (_options3$annotations = _options3.annotations) !== null && _options3$annotations !== void 0 && _options3$annotations.xaxis) {
+ options = configInstance.extendXAxisAnnotations(options);
+ }
+
+ if ((_options4 = options) !== null && _options4 !== void 0 && (_options4$annotations = _options4.annotations) !== null && _options4$annotations !== void 0 && _options4$annotations.points) {
+ options = configInstance.extendPointAnnotations(options);
+ }
+ }
+
+ return options;
+ }
+ }]);
+
+ return CoreUtils;
+ }();
+
+ var Helpers$4 = /*#__PURE__*/function () {
+ function Helpers(annoCtx) {
+ _classCallCheck(this, Helpers);
+
+ this.w = annoCtx.w;
+ this.annoCtx = annoCtx;
+ }
+
+ _createClass(Helpers, [{
+ key: "setOrientations",
+ value: function setOrientations(anno) {
+ var annoIndex = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
+ var w = this.w;
+
+ if (anno.label.orientation === 'vertical') {
+ var i = annoIndex !== null ? annoIndex : 0;
+ var xAnno = w.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(i, "']"));
+
+ if (xAnno !== null) {
+ var xAnnoCoord = xAnno.getBoundingClientRect();
+ xAnno.setAttribute('x', parseFloat(xAnno.getAttribute('x')) - xAnnoCoord.height + 4);
+
+ if (anno.label.position === 'top') {
+ xAnno.setAttribute('y', parseFloat(xAnno.getAttribute('y')) + xAnnoCoord.width);
+ } else {
+ xAnno.setAttribute('y', parseFloat(xAnno.getAttribute('y')) - xAnnoCoord.width);
+ }
+
+ var annoRotatingCenter = this.annoCtx.graphics.rotateAroundCenter(xAnno);
+ var x = annoRotatingCenter.x;
+ var y = annoRotatingCenter.y;
+ xAnno.setAttribute('transform', "rotate(-90 ".concat(x, " ").concat(y, ")"));
+ }
+ }
+ }
+ }, {
+ key: "addBackgroundToAnno",
+ value: function addBackgroundToAnno(annoEl, anno) {
+ var w = this.w;
+ if (!annoEl || typeof anno.label.text === 'undefined' || typeof anno.label.text !== 'undefined' && !String(anno.label.text).trim()) return null;
+ var elGridRect = w.globals.dom.baseEl.querySelector('.apexcharts-grid').getBoundingClientRect();
+ var coords = annoEl.getBoundingClientRect();
+ var pleft = anno.label.style.padding.left;
+ var pright = anno.label.style.padding.right;
+ var ptop = anno.label.style.padding.top;
+ var pbottom = anno.label.style.padding.bottom;
+
+ if (anno.label.orientation === 'vertical') {
+ ptop = anno.label.style.padding.left;
+ pbottom = anno.label.style.padding.right;
+ pleft = anno.label.style.padding.top;
+ pright = anno.label.style.padding.bottom;
+ }
+
+ var x1 = coords.left - elGridRect.left - pleft;
+ var y1 = coords.top - elGridRect.top - ptop;
+ var elRect = this.annoCtx.graphics.drawRect(x1 - w.globals.barPadForNumericAxis, y1, coords.width + pleft + pright, coords.height + ptop + pbottom, anno.label.borderRadius, anno.label.style.background, 1, anno.label.borderWidth, anno.label.borderColor, 0);
+
+ if (anno.id) {
+ // don't escapeString for this ID as it causes duplicate rects
+ elRect.node.classList.add(anno.id);
+ }
+
+ return elRect;
+ }
+ }, {
+ key: "annotationsBackground",
+ value: function annotationsBackground() {
+ var _this = this;
+
+ var w = this.w;
+
+ var add = function add(anno, i, type) {
+ var annoLabel = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(type, "-annotations .apexcharts-").concat(type, "-annotation-label[rel='").concat(i, "']"));
+
+ if (annoLabel) {
+ var parent = annoLabel.parentNode;
+
+ var elRect = _this.addBackgroundToAnno(annoLabel, anno);
+
+ if (elRect) {
+ parent.insertBefore(elRect.node, annoLabel);
+
+ if (anno.label.mouseEnter) {
+ elRect.node.addEventListener('mouseenter', anno.label.mouseEnter.bind(_this, anno));
+ }
+
+ if (anno.label.mouseLeave) {
+ elRect.node.addEventListener('mouseleave', anno.label.mouseLeave.bind(_this, anno));
+ }
+
+ if (anno.label.click) {
+ elRect.node.addEventListener('click', anno.label.click.bind(_this, anno));
+ }
+ }
+ }
+ };
+
+ w.config.annotations.xaxis.map(function (anno, i) {
+ add(anno, i, 'xaxis');
+ });
+ w.config.annotations.yaxis.map(function (anno, i) {
+ add(anno, i, 'yaxis');
+ });
+ w.config.annotations.points.map(function (anno, i) {
+ add(anno, i, 'point');
+ });
+ }
+ }, {
+ key: "getY1Y2",
+ value: function getY1Y2(type, anno) {
+ var y = type === 'y1' ? anno.y : anno.y2;
+ var yP;
+ var clipped = false;
+ var w = this.w;
+
+ if (this.annoCtx.invertAxis) {
+ var labels = w.globals.labels;
+
+ if (w.config.xaxis.convertedCatToNumeric) {
+ labels = w.globals.categoryLabels;
+ }
+
+ var catIndex = labels.indexOf(y);
+ var xLabel = w.globals.dom.baseEl.querySelector('.apexcharts-yaxis-texts-g text:nth-child(' + (catIndex + 1) + ')');
+
+ if (xLabel) {
+ yP = parseFloat(xLabel.getAttribute('y'));
+ } else {
+ yP = (w.globals.gridHeight / labels.length - 1) * (catIndex + 1) - w.globals.barHeight;
+ }
+
+ if (typeof anno.seriesIndex !== 'undefined') {
+ if (w.globals.barHeight) {
+ yP = yP - w.globals.barHeight / 2 * (w.globals.series.length - 1) + w.globals.barHeight * anno.seriesIndex;
+ }
+ }
+ } else {
+ var yPos; // We can use the index of any series referenced by the Yaxis
+ // because they will all return the same value.
+
+ var seriesIndex = w.globals.seriesYAxisMap[anno.yAxisIndex][0];
+
+ if (w.config.yaxis[anno.yAxisIndex].logarithmic) {
+ var coreUtils = new CoreUtils(this.annoCtx.ctx);
+ y = coreUtils.getLogVal(w.config.yaxis[anno.yAxisIndex].logBase, y, seriesIndex);
+ yPos = y / w.globals.yLogRatio[seriesIndex];
+ } else {
+ yPos = (y - w.globals.minYArr[seriesIndex]) / (w.globals.yRange[seriesIndex] / w.globals.gridHeight);
+ }
+
+ if (yPos > w.globals.gridHeight) {
+ yPos = w.globals.gridHeight;
+ clipped = true;
+ } else if (yPos < 0) {
+ yPos = 0;
+ clipped = true;
+ }
+
+ yP = w.globals.gridHeight - yPos;
+
+ if (anno.marker && (anno.y === undefined || anno.y === null)) {
+ // point annotation
+ yP = 0;
+ }
+
+ if (w.config.yaxis[anno.yAxisIndex] && w.config.yaxis[anno.yAxisIndex].reversed) {
+ yP = yPos;
+ }
+ }
+
+ if (typeof y === 'string' && y.indexOf('px') > -1) {
+ yP = parseFloat(y);
+ }
+
+ return {
+ 'yP': yP,
+ 'clipped': clipped
+ };
+ }
+ }, {
+ key: "getX1X2",
+ value: function getX1X2(type, anno) {
+ var x = type === 'x1' ? anno.x : anno.x2;
+ var w = this.w;
+ var min = this.annoCtx.invertAxis ? w.globals.minY : w.globals.minX;
+ var max = this.annoCtx.invertAxis ? w.globals.maxY : w.globals.maxX;
+ var range = this.annoCtx.invertAxis ? w.globals.yRange[0] : w.globals.xRange;
+ var clipped = false;
+ var xP;
+
+ if (this.annoCtx.inversedReversedAxis) {
+ xP = (max - x) / (range / w.globals.gridWidth);
+ } else {
+ xP = (x - min) / (range / w.globals.gridWidth);
+ }
+
+ if ((w.config.xaxis.type === 'category' || w.config.xaxis.convertedCatToNumeric) && !this.annoCtx.invertAxis && !w.globals.dataFormatXNumeric) {
+ if (!w.config.chart.sparkline.enabled) {
+ xP = this.getStringX(x);
+ }
+ }
+
+ if (typeof x === 'string' && x.indexOf('px') > -1) {
+ xP = parseFloat(x);
+ }
+
+ if ((x === undefined || x === null) && anno.marker) {
+ // point annotation in a horizontal chart
+ xP = w.globals.gridWidth;
+ }
+
+ if (typeof anno.seriesIndex !== 'undefined') {
+ if (w.globals.barWidth && !this.annoCtx.invertAxis) {
+ xP = xP - w.globals.barWidth / 2 * (w.globals.series.length - 1) + w.globals.barWidth * anno.seriesIndex;
+ }
+ }
+
+ if (xP > w.globals.gridWidth) {
+ xP = w.globals.gridWidth;
+ clipped = true;
+ } else if (xP < 0) {
+ xP = 0;
+ clipped = true;
+ }
+
+ return {
+ 'x': xP,
+ 'clipped': clipped
+ };
+ }
+ }, {
+ key: "getStringX",
+ value: function getStringX(x) {
+ var w = this.w;
+ var rX = x;
+
+ if (w.config.xaxis.convertedCatToNumeric && w.globals.categoryLabels.length) {
+ x = w.globals.categoryLabels.indexOf(x) + 1;
+ }
+
+ var catIndex = w.globals.labels.indexOf(x);
+ var xLabel = w.globals.dom.baseEl.querySelector('.apexcharts-xaxis-texts-g text:nth-child(' + (catIndex + 1) + ')');
+
+ if (xLabel) {
+ rX = parseFloat(xLabel.getAttribute('x'));
+ }
+
+ return rX;
+ }
+ }]);
+
+ return Helpers;
+ }();
+
+ var XAnnotations = /*#__PURE__*/function () {
+ function XAnnotations(annoCtx) {
+ _classCallCheck(this, XAnnotations);
+
+ this.w = annoCtx.w;
+ this.annoCtx = annoCtx;
+ this.invertAxis = this.annoCtx.invertAxis;
+ this.helpers = new Helpers$4(this.annoCtx);
+ }
+
+ _createClass(XAnnotations, [{
+ key: "addXaxisAnnotation",
+ value: function addXaxisAnnotation(anno, parent, index) {
+ var w = this.w;
+ var result = this.helpers.getX1X2('x1', anno);
+ var x1 = result.x;
+ var clipX1 = result.clipped;
+ var clipX2 = true;
+ var x2;
+ var text = anno.label.text;
+ var strokeDashArray = anno.strokeDashArray;
+ if (!Utils$1.isNumber(x1)) return;
+
+ if (anno.x2 === null || typeof anno.x2 === 'undefined') {
+ if (!clipX1) {
+ var line = this.annoCtx.graphics.drawLine(x1 + anno.offsetX, // x1
+ 0 + anno.offsetY, // y1
+ x1 + anno.offsetX, // x2
+ w.globals.gridHeight + anno.offsetY, // y2
+ anno.borderColor, // lineColor
+ strokeDashArray, //dashArray
+ anno.borderWidth);
+ parent.appendChild(line.node);
+
+ if (anno.id) {
+ line.node.classList.add(anno.id);
+ }
+ }
+ } else {
+ var _result = this.helpers.getX1X2('x2', anno);
+
+ x2 = _result.x;
+ clipX2 = _result.clipped;
+
+ if (!(clipX1 && clipX2)) {
+ if (x2 < x1) {
+ var temp = x1;
+ x1 = x2;
+ x2 = temp;
+ }
+
+ var rect = this.annoCtx.graphics.drawRect(x1 + anno.offsetX, // x1
+ 0 + anno.offsetY, // y1
+ x2 - x1, // x2
+ w.globals.gridHeight + anno.offsetY, // y2
+ 0, // radius
+ anno.fillColor, // color
+ anno.opacity, // opacity,
+ 1, // strokeWidth
+ anno.borderColor, // strokeColor
+ strokeDashArray // stokeDashArray
+ );
+ rect.node.classList.add('apexcharts-annotation-rect');
+ rect.attr('clip-path', "url(#gridRectMask".concat(w.globals.cuid, ")"));
+ parent.appendChild(rect.node);
+
+ if (anno.id) {
+ rect.node.classList.add(anno.id);
+ }
+ }
+ }
+
+ if (!(clipX1 && clipX2)) {
+ var textRects = this.annoCtx.graphics.getTextRects(text, parseFloat(anno.label.style.fontSize));
+ var textY = anno.label.position === 'top' ? 4 : anno.label.position === 'center' ? w.globals.gridHeight / 2 + (anno.label.orientation === 'vertical' ? textRects.width / 2 : 0) : w.globals.gridHeight;
+ var elText = this.annoCtx.graphics.drawText({
+ x: x1 + anno.label.offsetX,
+ y: textY + anno.label.offsetY - (anno.label.orientation === 'vertical' ? anno.label.position === 'top' ? textRects.width / 2 - 12 : -textRects.width / 2 : 0),
+ text: text,
+ textAnchor: anno.label.textAnchor,
+ fontSize: anno.label.style.fontSize,
+ fontFamily: anno.label.style.fontFamily,
+ fontWeight: anno.label.style.fontWeight,
+ foreColor: anno.label.style.color,
+ cssClass: "apexcharts-xaxis-annotation-label ".concat(anno.label.style.cssClass, " ").concat(anno.id ? anno.id : '')
+ });
+ elText.attr({
+ rel: index
+ });
+ parent.appendChild(elText.node); // after placing the annotations on svg, set any vertically placed annotations
+
+ this.annoCtx.helpers.setOrientations(anno, index);
+ }
+ }
+ }, {
+ key: "drawXAxisAnnotations",
+ value: function drawXAxisAnnotations() {
+ var _this = this;
+
+ var w = this.w;
+ var elg = this.annoCtx.graphics.group({
+ class: 'apexcharts-xaxis-annotations'
+ });
+ w.config.annotations.xaxis.map(function (anno, index) {
+ _this.addXaxisAnnotation(anno, elg.node, index);
+ });
+ return elg;
+ }
+ }]);
+
+ return XAnnotations;
+ }();
+
+ /**
+ * DateTime Class to manipulate datetime values.
+ *
+ * @module DateTime
+ **/
+
+ var DateTime = /*#__PURE__*/function () {
+ function DateTime(ctx) {
+ _classCallCheck(this, DateTime);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.months31 = [1, 3, 5, 7, 8, 10, 12];
+ this.months30 = [2, 4, 6, 9, 11];
+ this.daysCntOfYear = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334];
+ }
+
+ _createClass(DateTime, [{
+ key: "isValidDate",
+ value: function isValidDate(date) {
+ if (typeof date === 'number') {
+ return false; // don't test for timestamps
+ }
+
+ return !isNaN(this.parseDate(date));
+ }
+ }, {
+ key: "getTimeStamp",
+ value: function getTimeStamp(dateStr) {
+ if (!Date.parse(dateStr)) {
+ return dateStr;
+ }
+
+ var utc = this.w.config.xaxis.labels.datetimeUTC;
+ return !utc ? new Date(dateStr).getTime() : new Date(new Date(dateStr).toISOString().substr(0, 25)).getTime();
+ }
+ }, {
+ key: "getDate",
+ value: function getDate(timestamp) {
+ var utc = this.w.config.xaxis.labels.datetimeUTC;
+ return utc ? new Date(new Date(timestamp).toUTCString()) : new Date(timestamp);
+ }
+ }, {
+ key: "parseDate",
+ value: function parseDate(dateStr) {
+ var parsed = Date.parse(dateStr);
+
+ if (!isNaN(parsed)) {
+ return this.getTimeStamp(dateStr);
+ }
+
+ var output = Date.parse(dateStr.replace(/-/g, '/').replace(/[a-z]+/gi, ' '));
+ output = this.getTimeStamp(output);
+ return output;
+ } // This fixes the difference of x-axis labels between chrome/safari
+ // Fixes #1726, #1544, #1485, #1255
+
+ }, {
+ key: "parseDateWithTimezone",
+ value: function parseDateWithTimezone(dateStr) {
+ return Date.parse(dateStr.replace(/-/g, '/').replace(/[a-z]+/gi, ' '));
+ } // http://stackoverflow.com/questions/14638018/current-time-formatting-with-javascript#answer-14638191
+
+ }, {
+ key: "formatDate",
+ value: function formatDate(date, format) {
+ var locale = this.w.globals.locale;
+ var utc = this.w.config.xaxis.labels.datetimeUTC;
+ var MMMM = ['\x00'].concat(_toConsumableArray(locale.months));
+ var MMM = ['\x01'].concat(_toConsumableArray(locale.shortMonths));
+ var dddd = ['\x02'].concat(_toConsumableArray(locale.days));
+ var ddd = ['\x03'].concat(_toConsumableArray(locale.shortDays));
+
+ function ii(i, len) {
+ var s = i + '';
+ len = len || 2;
+
+ while (s.length < len) {
+ s = '0' + s;
+ }
+
+ return s;
+ }
+
+ var y = utc ? date.getUTCFullYear() : date.getFullYear();
+ format = format.replace(/(^|[^\\])yyyy+/g, '$1' + y);
+ format = format.replace(/(^|[^\\])yy/g, '$1' + y.toString().substr(2, 2));
+ format = format.replace(/(^|[^\\])y/g, '$1' + y);
+ var M = (utc ? date.getUTCMonth() : date.getMonth()) + 1;
+ format = format.replace(/(^|[^\\])MMMM+/g, '$1' + MMMM[0]);
+ format = format.replace(/(^|[^\\])MMM/g, '$1' + MMM[0]);
+ format = format.replace(/(^|[^\\])MM/g, '$1' + ii(M));
+ format = format.replace(/(^|[^\\])M/g, '$1' + M);
+ var d = utc ? date.getUTCDate() : date.getDate();
+ format = format.replace(/(^|[^\\])dddd+/g, '$1' + dddd[0]);
+ format = format.replace(/(^|[^\\])ddd/g, '$1' + ddd[0]);
+ format = format.replace(/(^|[^\\])dd/g, '$1' + ii(d));
+ format = format.replace(/(^|[^\\])d/g, '$1' + d);
+ var H = utc ? date.getUTCHours() : date.getHours();
+ format = format.replace(/(^|[^\\])HH+/g, '$1' + ii(H));
+ format = format.replace(/(^|[^\\])H/g, '$1' + H);
+ var h = H > 12 ? H - 12 : H === 0 ? 12 : H;
+ format = format.replace(/(^|[^\\])hh+/g, '$1' + ii(h));
+ format = format.replace(/(^|[^\\])h/g, '$1' + h);
+ var m = utc ? date.getUTCMinutes() : date.getMinutes();
+ format = format.replace(/(^|[^\\])mm+/g, '$1' + ii(m));
+ format = format.replace(/(^|[^\\])m/g, '$1' + m);
+ var s = utc ? date.getUTCSeconds() : date.getSeconds();
+ format = format.replace(/(^|[^\\])ss+/g, '$1' + ii(s));
+ format = format.replace(/(^|[^\\])s/g, '$1' + s);
+ var f = utc ? date.getUTCMilliseconds() : date.getMilliseconds();
+ format = format.replace(/(^|[^\\])fff+/g, '$1' + ii(f, 3));
+ f = Math.round(f / 10);
+ format = format.replace(/(^|[^\\])ff/g, '$1' + ii(f));
+ f = Math.round(f / 10);
+ format = format.replace(/(^|[^\\])f/g, '$1' + f);
+ var T = H < 12 ? 'AM' : 'PM';
+ format = format.replace(/(^|[^\\])TT+/g, '$1' + T);
+ format = format.replace(/(^|[^\\])T/g, '$1' + T.charAt(0));
+ var t = T.toLowerCase();
+ format = format.replace(/(^|[^\\])tt+/g, '$1' + t);
+ format = format.replace(/(^|[^\\])t/g, '$1' + t.charAt(0));
+ var tz = -date.getTimezoneOffset();
+ var K = utc || !tz ? 'Z' : tz > 0 ? '+' : '-';
+
+ if (!utc) {
+ tz = Math.abs(tz);
+ var tzHrs = Math.floor(tz / 60);
+ var tzMin = tz % 60;
+ K += ii(tzHrs) + ':' + ii(tzMin);
+ }
+
+ format = format.replace(/(^|[^\\])K/g, '$1' + K);
+ var day = (utc ? date.getUTCDay() : date.getDay()) + 1;
+ format = format.replace(new RegExp(dddd[0], 'g'), dddd[day]);
+ format = format.replace(new RegExp(ddd[0], 'g'), ddd[day]);
+ format = format.replace(new RegExp(MMMM[0], 'g'), MMMM[M]);
+ format = format.replace(new RegExp(MMM[0], 'g'), MMM[M]);
+ format = format.replace(/\\(.)/g, '$1');
+ return format;
+ }
+ }, {
+ key: "getTimeUnitsfromTimestamp",
+ value: function getTimeUnitsfromTimestamp(minX, maxX, utc) {
+ var w = this.w;
+
+ if (w.config.xaxis.min !== undefined) {
+ minX = w.config.xaxis.min;
+ }
+
+ if (w.config.xaxis.max !== undefined) {
+ maxX = w.config.xaxis.max;
+ }
+
+ var tsMin = this.getDate(minX);
+ var tsMax = this.getDate(maxX);
+ var minD = this.formatDate(tsMin, 'yyyy MM dd HH mm ss fff').split(' ');
+ var maxD = this.formatDate(tsMax, 'yyyy MM dd HH mm ss fff').split(' ');
+ return {
+ minMillisecond: parseInt(minD[6], 10),
+ maxMillisecond: parseInt(maxD[6], 10),
+ minSecond: parseInt(minD[5], 10),
+ maxSecond: parseInt(maxD[5], 10),
+ minMinute: parseInt(minD[4], 10),
+ maxMinute: parseInt(maxD[4], 10),
+ minHour: parseInt(minD[3], 10),
+ maxHour: parseInt(maxD[3], 10),
+ minDate: parseInt(minD[2], 10),
+ maxDate: parseInt(maxD[2], 10),
+ minMonth: parseInt(minD[1], 10) - 1,
+ maxMonth: parseInt(maxD[1], 10) - 1,
+ minYear: parseInt(minD[0], 10),
+ maxYear: parseInt(maxD[0], 10)
+ };
+ }
+ }, {
+ key: "isLeapYear",
+ value: function isLeapYear(year) {
+ return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0;
+ }
+ }, {
+ key: "calculcateLastDaysOfMonth",
+ value: function calculcateLastDaysOfMonth(month, year, subtract) {
+ var days = this.determineDaysOfMonths(month, year); // whatever days we get, subtract the number of days asked
+
+ return days - subtract;
+ }
+ }, {
+ key: "determineDaysOfYear",
+ value: function determineDaysOfYear(year) {
+ var days = 365;
+
+ if (this.isLeapYear(year)) {
+ days = 366;
+ }
+
+ return days;
+ }
+ }, {
+ key: "determineRemainingDaysOfYear",
+ value: function determineRemainingDaysOfYear(year, month, date) {
+ var dayOfYear = this.daysCntOfYear[month] + date;
+ if (month > 1 && this.isLeapYear()) dayOfYear++;
+ return dayOfYear;
+ }
+ }, {
+ key: "determineDaysOfMonths",
+ value: function determineDaysOfMonths(month, year) {
+ var days = 30;
+ month = Utils$1.monthMod(month);
+
+ switch (true) {
+ case this.months30.indexOf(month) > -1:
+ if (month === 2) {
+ if (this.isLeapYear(year)) {
+ days = 29;
+ } else {
+ days = 28;
+ }
+ }
+
+ break;
+
+ case this.months31.indexOf(month) > -1:
+ days = 31;
+ break;
+
+ default:
+ days = 31;
+ break;
+ }
+
+ return days;
+ }
+ }]);
+
+ return DateTime;
+ }();
+
+ /**
+ * ApexCharts Formatter Class for setting value formatters for axes as well as tooltips.
+ *
+ * @module Formatters
+ **/
+
+ var Formatters = /*#__PURE__*/function () {
+ function Formatters(ctx) {
+ _classCallCheck(this, Formatters);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.tooltipKeyFormat = 'dd MMM';
+ }
+
+ _createClass(Formatters, [{
+ key: "xLabelFormat",
+ value: function xLabelFormat(fn, val, timestamp, opts) {
+ var w = this.w;
+
+ if (w.config.xaxis.type === 'datetime') {
+ if (w.config.xaxis.labels.formatter === undefined) {
+ // if user has not specified a custom formatter, use the default tooltip.x.format
+ if (w.config.tooltip.x.formatter === undefined) {
+ var datetimeObj = new DateTime(this.ctx);
+ return datetimeObj.formatDate(datetimeObj.getDate(val), w.config.tooltip.x.format);
+ }
+ }
+ }
+
+ return fn(val, timestamp, opts);
+ }
+ }, {
+ key: "defaultGeneralFormatter",
+ value: function defaultGeneralFormatter(val) {
+ if (Array.isArray(val)) {
+ return val.map(function (v) {
+ return v;
+ });
+ } else {
+ return val;
+ }
+ }
+ }, {
+ key: "defaultYFormatter",
+ value: function defaultYFormatter(v, yaxe, i) {
+ var w = this.w;
+
+ if (Utils$1.isNumber(v)) {
+ if (w.globals.yValueDecimal !== 0) {
+ v = v.toFixed(yaxe.decimalsInFloat !== undefined ? yaxe.decimalsInFloat : w.globals.yValueDecimal);
+ } else {
+ // We have an integer value but the label is not an integer. We can
+ // deduce this is due to the number of ticks exceeding the even lower
+ // integer range. Add an additional decimal place only in this case.
+ var f = v.toFixed(0); // Do not change the == to ===
+
+ v = v == f ? f : v.toFixed(1);
+ }
+ }
+
+ return v;
+ }
+ }, {
+ key: "setLabelFormatters",
+ value: function setLabelFormatters() {
+ var _this = this;
+
+ var w = this.w;
+
+ w.globals.xaxisTooltipFormatter = function (val) {
+ return _this.defaultGeneralFormatter(val);
+ };
+
+ w.globals.ttKeyFormatter = function (val) {
+ return _this.defaultGeneralFormatter(val);
+ };
+
+ w.globals.ttZFormatter = function (val) {
+ return val;
+ };
+
+ w.globals.legendFormatter = function (val) {
+ return _this.defaultGeneralFormatter(val);
+ }; // formatter function will always overwrite format property
+
+
+ if (w.config.xaxis.labels.formatter !== undefined) {
+ w.globals.xLabelFormatter = w.config.xaxis.labels.formatter;
+ } else {
+ w.globals.xLabelFormatter = function (val) {
+ if (Utils$1.isNumber(val)) {
+ if (!w.config.xaxis.convertedCatToNumeric && w.config.xaxis.type === 'numeric') {
+ if (Utils$1.isNumber(w.config.xaxis.decimalsInFloat)) {
+ return val.toFixed(w.config.xaxis.decimalsInFloat);
+ } else {
+ var diff = w.globals.maxX - w.globals.minX;
+
+ if (diff > 0 && diff < 100) {
+ return val.toFixed(1);
+ }
+
+ return val.toFixed(0);
+ }
+ }
+
+ if (w.globals.isBarHorizontal) {
+ var range = w.globals.maxY - w.globals.minYArr;
+
+ if (range < 4) {
+ return val.toFixed(1);
+ }
+ }
+
+ return val.toFixed(0);
+ }
+
+ return val;
+ };
+ }
+
+ if (typeof w.config.tooltip.x.formatter === 'function') {
+ w.globals.ttKeyFormatter = w.config.tooltip.x.formatter;
+ } else {
+ w.globals.ttKeyFormatter = w.globals.xLabelFormatter;
+ }
+
+ if (typeof w.config.xaxis.tooltip.formatter === 'function') {
+ w.globals.xaxisTooltipFormatter = w.config.xaxis.tooltip.formatter;
+ }
+
+ if (Array.isArray(w.config.tooltip.y)) {
+ w.globals.ttVal = w.config.tooltip.y;
+ } else {
+ if (w.config.tooltip.y.formatter !== undefined) {
+ w.globals.ttVal = w.config.tooltip.y;
+ }
+ }
+
+ if (w.config.tooltip.z.formatter !== undefined) {
+ w.globals.ttZFormatter = w.config.tooltip.z.formatter;
+ } // legend formatter - if user wants to append any global values of series to legend text
+
+
+ if (w.config.legend.formatter !== undefined) {
+ w.globals.legendFormatter = w.config.legend.formatter;
+ } // formatter function will always overwrite format property
+
+
+ w.config.yaxis.forEach(function (yaxe, i) {
+ if (yaxe.labels.formatter !== undefined) {
+ w.globals.yLabelFormatters[i] = yaxe.labels.formatter;
+ } else {
+ w.globals.yLabelFormatters[i] = function (val) {
+ if (!w.globals.xyCharts) return val;
+
+ if (Array.isArray(val)) {
+ return val.map(function (v) {
+ return _this.defaultYFormatter(v, yaxe, i);
+ });
+ } else {
+ return _this.defaultYFormatter(val, yaxe, i);
+ }
+ };
+ }
+ });
+ return w.globals;
+ }
+ }, {
+ key: "heatmapLabelFormatters",
+ value: function heatmapLabelFormatters() {
+ var w = this.w;
+
+ if (w.config.chart.type === 'heatmap') {
+ w.globals.yAxisScale[0].result = w.globals.seriesNames.slice(); // get the longest string from the labels array and also apply label formatter to it
+
+ var longest = w.globals.seriesNames.reduce(function (a, b) {
+ return a.length > b.length ? a : b;
+ }, 0);
+ w.globals.yAxisScale[0].niceMax = longest;
+ w.globals.yAxisScale[0].niceMin = longest;
+ }
+ }
+ }]);
+
+ return Formatters;
+ }();
+
+ var AxesUtils = /*#__PURE__*/function () {
+ function AxesUtils(ctx) {
+ _classCallCheck(this, AxesUtils);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ } // Based on the formatter function, get the label text and position
+
+
+ _createClass(AxesUtils, [{
+ key: "getLabel",
+ value: function getLabel(labels, timescaleLabels, x, i) {
+ var drawnLabels = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : [];
+ var fontSize = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : '12px';
+ var isLeafGroup = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : true;
+ var w = this.w;
+ var rawLabel = typeof labels[i] === 'undefined' ? '' : labels[i];
+ var label = rawLabel;
+ var xlbFormatter = w.globals.xLabelFormatter;
+ var customFormatter = w.config.xaxis.labels.formatter;
+ var isBold = false;
+ var xFormat = new Formatters(this.ctx);
+ var timestamp = rawLabel;
+
+ if (isLeafGroup) {
+ label = xFormat.xLabelFormat(xlbFormatter, rawLabel, timestamp, {
+ i: i,
+ dateFormatter: new DateTime(this.ctx).formatDate,
+ w: w
+ });
+
+ if (customFormatter !== undefined) {
+ label = customFormatter(rawLabel, labels[i], {
+ i: i,
+ dateFormatter: new DateTime(this.ctx).formatDate,
+ w: w
+ });
+ }
+ }
+
+ var determineHighestUnit = function determineHighestUnit(unit) {
+ var highestUnit = null;
+ timescaleLabels.forEach(function (t) {
+ if (t.unit === 'month') {
+ highestUnit = 'year';
+ } else if (t.unit === 'day') {
+ highestUnit = 'month';
+ } else if (t.unit === 'hour') {
+ highestUnit = 'day';
+ } else if (t.unit === 'minute') {
+ highestUnit = 'hour';
+ }
+ });
+ return highestUnit === unit;
+ };
+
+ if (timescaleLabels.length > 0) {
+ isBold = determineHighestUnit(timescaleLabels[i].unit);
+ x = timescaleLabels[i].position;
+ label = timescaleLabels[i].value;
+ } else {
+ if (w.config.xaxis.type === 'datetime' && customFormatter === undefined) {
+ label = '';
+ }
+ }
+
+ if (typeof label === 'undefined') label = '';
+ label = Array.isArray(label) ? label : label.toString();
+ var graphics = new Graphics(this.ctx);
+ var textRect = {};
+
+ if (w.globals.rotateXLabels && isLeafGroup) {
+ textRect = graphics.getTextRects(label, parseInt(fontSize, 10), null, "rotate(".concat(w.config.xaxis.labels.rotate, " 0 0)"), false);
+ } else {
+ textRect = graphics.getTextRects(label, parseInt(fontSize, 10));
+ }
+
+ var allowDuplicatesInTimeScale = !w.config.xaxis.labels.showDuplicates && this.ctx.timeScale;
+
+ if (!Array.isArray(label) && (String(label) === 'NaN' || drawnLabels.indexOf(label) >= 0 && allowDuplicatesInTimeScale)) {
+ label = '';
+ }
+
+ return {
+ x: x,
+ text: label,
+ textRect: textRect,
+ isBold: isBold
+ };
+ }
+ }, {
+ key: "checkLabelBasedOnTickamount",
+ value: function checkLabelBasedOnTickamount(i, label, labelsLen) {
+ var w = this.w;
+ var ticks = w.config.xaxis.tickAmount;
+ if (ticks === 'dataPoints') ticks = Math.round(w.globals.gridWidth / 120);
+ if (ticks > labelsLen) return label;
+ var tickMultiple = Math.round(labelsLen / (ticks + 1));
+
+ if (i % tickMultiple === 0) {
+ return label;
+ } else {
+ label.text = '';
+ }
+
+ return label;
+ }
+ }, {
+ key: "checkForOverflowingLabels",
+ value: function checkForOverflowingLabels(i, label, labelsLen, drawnLabels, drawnLabelsRects) {
+ var w = this.w;
+
+ if (i === 0) {
+ // check if first label is being truncated
+ if (w.globals.skipFirstTimelinelabel) {
+ label.text = '';
+ }
+ }
+
+ if (i === labelsLen - 1) {
+ // check if last label is being truncated
+ if (w.globals.skipLastTimelinelabel) {
+ label.text = '';
+ }
+ }
+
+ if (w.config.xaxis.labels.hideOverlappingLabels && drawnLabels.length > 0) {
+ var prev = drawnLabelsRects[drawnLabelsRects.length - 1];
+
+ if (label.x < prev.textRect.width / (w.globals.rotateXLabels ? Math.abs(w.config.xaxis.labels.rotate) / 12 : 1.01) + prev.x) {
+ label.text = '';
+ }
+ }
+
+ return label;
+ }
+ }, {
+ key: "checkForReversedLabels",
+ value: function checkForReversedLabels(i, labels) {
+ var w = this.w;
+
+ if (w.config.yaxis[i] && w.config.yaxis[i].reversed) {
+ labels.reverse();
+ }
+
+ return labels;
+ }
+ }, {
+ key: "isYAxisHidden",
+ value: function isYAxisHidden(index) {
+ var w = this.w;
+ var coreUtils = new CoreUtils(this.ctx);
+ var allCollapsed = !w.globals.seriesYAxisMap[index].some(function (si) {
+ return w.globals.collapsedSeriesIndices.indexOf(si) === -1;
+ });
+ return allCollapsed || !w.config.yaxis[index].show || !w.config.yaxis[index].showForNullSeries && coreUtils.isSeriesNull(index);
+ } // get the label color for y-axis
+ // realIndex is the actual series index, while i is the tick Index
+
+ }, {
+ key: "getYAxisForeColor",
+ value: function getYAxisForeColor(yColors, realIndex) {
+ var w = this.w;
+
+ if (Array.isArray(yColors) && w.globals.yAxisScale[realIndex]) {
+ this.ctx.theme.pushExtraColors(yColors, w.globals.yAxisScale[realIndex].result.length, false);
+ }
+
+ return yColors;
+ }
+ }, {
+ key: "drawYAxisTicks",
+ value: function drawYAxisTicks(x, tickAmount, axisBorder, axisTicks, realIndex, labelsDivider, elYaxis) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx); // initial label position = 0;
+
+ var t = w.globals.translateY;
+
+ if (axisTicks.show && tickAmount > 0) {
+ if (w.config.yaxis[realIndex].opposite === true) x = x + axisTicks.width;
+
+ for (var i = tickAmount; i >= 0; i--) {
+ var tY = t + tickAmount / 10 + w.config.yaxis[realIndex].labels.offsetY - 1;
+
+ if (w.globals.isBarHorizontal) {
+ tY = labelsDivider * i;
+ }
+
+ if (w.config.chart.type === 'heatmap') {
+ tY = tY + labelsDivider / 2;
+ }
+
+ var elTick = graphics.drawLine(x + axisBorder.offsetX - axisTicks.width + axisTicks.offsetX, tY + axisTicks.offsetY, x + axisBorder.offsetX + axisTicks.offsetX, tY + axisTicks.offsetY, axisTicks.color);
+ elYaxis.add(elTick);
+ t = t + labelsDivider;
+ }
+ }
+ }
+ }]);
+
+ return AxesUtils;
+ }();
+
+ var YAnnotations = /*#__PURE__*/function () {
+ function YAnnotations(annoCtx) {
+ _classCallCheck(this, YAnnotations);
+
+ this.w = annoCtx.w;
+ this.annoCtx = annoCtx;
+ this.helpers = new Helpers$4(this.annoCtx);
+ this.axesUtils = new AxesUtils(this.annoCtx);
+ }
+
+ _createClass(YAnnotations, [{
+ key: "addYaxisAnnotation",
+ value: function addYaxisAnnotation(anno, parent, index) {
+ var w = this.w;
+ var strokeDashArray = anno.strokeDashArray;
+ var result = this.helpers.getY1Y2('y1', anno);
+ var y1 = result.yP;
+ var clipY1 = result.clipped;
+ var y2;
+ var clipY2 = true;
+ var drawn = false;
+ var text = anno.label.text;
+
+ if (anno.y2 === null || typeof anno.y2 === 'undefined') {
+ if (!clipY1) {
+ drawn = true;
+ var line = this.annoCtx.graphics.drawLine(0 + anno.offsetX, // x1
+ y1 + anno.offsetY, // y1
+ this._getYAxisAnnotationWidth(anno), // x2
+ y1 + anno.offsetY, // y2
+ anno.borderColor, // lineColor
+ strokeDashArray, // dashArray
+ anno.borderWidth);
+ parent.appendChild(line.node);
+
+ if (anno.id) {
+ line.node.classList.add(anno.id);
+ }
+ }
+ } else {
+ result = this.helpers.getY1Y2('y2', anno);
+ y2 = result.yP;
+ clipY2 = result.clipped;
+
+ if (y2 > y1) {
+ var temp = y1;
+ y1 = y2;
+ y2 = temp;
+ }
+
+ if (!(clipY1 && clipY2)) {
+ drawn = true;
+ var rect = this.annoCtx.graphics.drawRect(0 + anno.offsetX, // x1
+ y2 + anno.offsetY, // y1
+ this._getYAxisAnnotationWidth(anno), // x2
+ y1 - y2, // y2
+ 0, // radius
+ anno.fillColor, // color
+ anno.opacity, // opacity,
+ 1, // strokeWidth
+ anno.borderColor, // strokeColor
+ strokeDashArray // stokeDashArray
+ );
+ rect.node.classList.add('apexcharts-annotation-rect');
+ rect.attr('clip-path', "url(#gridRectMask".concat(w.globals.cuid, ")"));
+ parent.appendChild(rect.node);
+
+ if (anno.id) {
+ rect.node.classList.add(anno.id);
+ }
+ }
+ }
+
+ if (drawn) {
+ var textX = anno.label.position === 'right' ? w.globals.gridWidth : anno.label.position === 'center' ? w.globals.gridWidth / 2 : 0;
+ var elText = this.annoCtx.graphics.drawText({
+ x: textX + anno.label.offsetX,
+ y: (y2 != null ? y2 : y1) + anno.label.offsetY - 3,
+ text: text,
+ textAnchor: anno.label.textAnchor,
+ fontSize: anno.label.style.fontSize,
+ fontFamily: anno.label.style.fontFamily,
+ fontWeight: anno.label.style.fontWeight,
+ foreColor: anno.label.style.color,
+ cssClass: "apexcharts-yaxis-annotation-label ".concat(anno.label.style.cssClass, " ").concat(anno.id ? anno.id : '')
+ });
+ elText.attr({
+ rel: index
+ });
+ parent.appendChild(elText.node);
+ }
+ }
+ }, {
+ key: "_getYAxisAnnotationWidth",
+ value: function _getYAxisAnnotationWidth(anno) {
+ // issue apexcharts.js#2009
+ var w = this.w;
+ var width = w.globals.gridWidth;
+
+ if (anno.width.indexOf('%') > -1) {
+ width = w.globals.gridWidth * parseInt(anno.width, 10) / 100;
+ } else {
+ width = parseInt(anno.width, 10);
+ }
+
+ return width + anno.offsetX;
+ }
+ }, {
+ key: "drawYAxisAnnotations",
+ value: function drawYAxisAnnotations() {
+ var _this = this;
+
+ var w = this.w;
+ var elg = this.annoCtx.graphics.group({
+ class: 'apexcharts-yaxis-annotations'
+ });
+ w.config.annotations.yaxis.forEach(function (anno, index) {
+ w.globals.seriesYAxisMap[anno.yAxisIndex][0];
+
+ if (!_this.axesUtils.isYAxisHidden(anno.yAxisIndex)) {
+ _this.addYaxisAnnotation(anno, elg.node, index);
+ }
+ });
+ return elg;
+ }
+ }]);
+
+ return YAnnotations;
+ }();
+
+ var PointAnnotations = /*#__PURE__*/function () {
+ function PointAnnotations(annoCtx) {
+ _classCallCheck(this, PointAnnotations);
+
+ this.w = annoCtx.w;
+ this.annoCtx = annoCtx;
+ this.helpers = new Helpers$4(this.annoCtx);
+ }
+
+ _createClass(PointAnnotations, [{
+ key: "addPointAnnotation",
+ value: function addPointAnnotation(anno, parent, index) {
+ this.w;
+ var result = this.helpers.getX1X2('x1', anno);
+ var x = result.x;
+ var clipX = result.clipped;
+ result = this.helpers.getY1Y2('y1', anno);
+ var y = result.yP;
+ var clipY = result.clipped;
+ if (!Utils$1.isNumber(x)) return;
+
+ if (!(clipY || clipX)) {
+ var optsPoints = {
+ pSize: anno.marker.size,
+ pointStrokeWidth: anno.marker.strokeWidth,
+ pointFillColor: anno.marker.fillColor,
+ pointStrokeColor: anno.marker.strokeColor,
+ shape: anno.marker.shape,
+ pRadius: anno.marker.radius,
+ class: "apexcharts-point-annotation-marker ".concat(anno.marker.cssClass, " ").concat(anno.id ? anno.id : '')
+ };
+ var point = this.annoCtx.graphics.drawMarker(x + anno.marker.offsetX, y + anno.marker.offsetY, optsPoints);
+ parent.appendChild(point.node);
+ var text = anno.label.text ? anno.label.text : '';
+ var elText = this.annoCtx.graphics.drawText({
+ x: x + anno.label.offsetX,
+ y: y + anno.label.offsetY - anno.marker.size - parseFloat(anno.label.style.fontSize) / 1.6,
+ text: text,
+ textAnchor: anno.label.textAnchor,
+ fontSize: anno.label.style.fontSize,
+ fontFamily: anno.label.style.fontFamily,
+ fontWeight: anno.label.style.fontWeight,
+ foreColor: anno.label.style.color,
+ cssClass: "apexcharts-point-annotation-label ".concat(anno.label.style.cssClass, " ").concat(anno.id ? anno.id : '')
+ });
+ elText.attr({
+ rel: index
+ });
+ parent.appendChild(elText.node); // TODO: deprecate this as we will use custom
+
+ if (anno.customSVG.SVG) {
+ var g = this.annoCtx.graphics.group({
+ class: 'apexcharts-point-annotations-custom-svg ' + anno.customSVG.cssClass
+ });
+ g.attr({
+ transform: "translate(".concat(x + anno.customSVG.offsetX, ", ").concat(y + anno.customSVG.offsetY, ")")
+ });
+ g.node.innerHTML = anno.customSVG.SVG;
+ parent.appendChild(g.node);
+ }
+
+ if (anno.image.path) {
+ var imgWidth = anno.image.width ? anno.image.width : 20;
+ var imgHeight = anno.image.height ? anno.image.height : 20;
+ point = this.annoCtx.addImage({
+ x: x + anno.image.offsetX - imgWidth / 2,
+ y: y + anno.image.offsetY - imgHeight / 2,
+ width: imgWidth,
+ height: imgHeight,
+ path: anno.image.path,
+ appendTo: '.apexcharts-point-annotations'
+ });
+ }
+
+ if (anno.mouseEnter) {
+ point.node.addEventListener('mouseenter', anno.mouseEnter.bind(this, anno));
+ }
+
+ if (anno.mouseLeave) {
+ point.node.addEventListener('mouseleave', anno.mouseLeave.bind(this, anno));
+ }
+
+ if (anno.click) {
+ point.node.addEventListener('click', anno.click.bind(this, anno));
+ }
+ }
+ }
+ }, {
+ key: "drawPointAnnotations",
+ value: function drawPointAnnotations() {
+ var _this = this;
+
+ var w = this.w;
+ var elg = this.annoCtx.graphics.group({
+ class: 'apexcharts-point-annotations'
+ });
+ w.config.annotations.points.map(function (anno, index) {
+ _this.addPointAnnotation(anno, elg.node, index);
+ });
+ return elg;
+ }
+ }]);
+
+ return PointAnnotations;
+ }();
+
+ const name = "en";
+ const options = {
+ months: [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
+ shortMonths: [
+ "Jan",
+ "Feb",
+ "Mar",
+ "Apr",
+ "May",
+ "Jun",
+ "Jul",
+ "Aug",
+ "Sep",
+ "Oct",
+ "Nov",
+ "Dec"
+ ],
+ days: [
+ "Sunday",
+ "Monday",
+ "Tuesday",
+ "Wednesday",
+ "Thursday",
+ "Friday",
+ "Saturday"
+ ],
+ shortDays: [
+ "Sun",
+ "Mon",
+ "Tue",
+ "Wed",
+ "Thu",
+ "Fri",
+ "Sat"
+ ],
+ toolbar: {
+ exportToSVG: "Download SVG",
+ exportToPNG: "Download PNG",
+ exportToCSV: "Download CSV",
+ menu: "Menu",
+ selection: "Selection",
+ selectionZoom: "Selection Zoom",
+ zoomIn: "Zoom In",
+ zoomOut: "Zoom Out",
+ pan: "Panning",
+ reset: "Reset Zoom"
+ }
+ };
+ var en = {
+ name: name,
+ options: options
+ };
+
+ var Options = /*#__PURE__*/function () {
+ function Options() {
+ _classCallCheck(this, Options);
+
+ this.yAxis = {
+ show: true,
+ showAlways: false,
+ showForNullSeries: true,
+ seriesName: undefined,
+ opposite: false,
+ reversed: false,
+ logarithmic: false,
+ logBase: 10,
+ tickAmount: undefined,
+ stepSize: undefined,
+ forceNiceScale: false,
+ max: undefined,
+ min: undefined,
+ floating: false,
+ decimalsInFloat: undefined,
+ labels: {
+ show: true,
+ minWidth: 0,
+ maxWidth: 160,
+ offsetX: 0,
+ offsetY: 0,
+ align: undefined,
+ rotate: 0,
+ padding: 20,
+ style: {
+ colors: [],
+ fontSize: '11px',
+ fontWeight: 400,
+ fontFamily: undefined,
+ cssClass: ''
+ },
+ formatter: undefined
+ },
+ axisBorder: {
+ show: false,
+ color: '#e0e0e0',
+ width: 1,
+ offsetX: 0,
+ offsetY: 0
+ },
+ axisTicks: {
+ show: false,
+ color: '#e0e0e0',
+ width: 6,
+ offsetX: 0,
+ offsetY: 0
+ },
+ title: {
+ text: undefined,
+ rotate: -90,
+ offsetY: 0,
+ offsetX: 0,
+ style: {
+ color: undefined,
+ fontSize: '11px',
+ fontWeight: 900,
+ fontFamily: undefined,
+ cssClass: ''
+ }
+ },
+ tooltip: {
+ enabled: false,
+ offsetX: 0
+ },
+ crosshairs: {
+ show: true,
+ position: 'front',
+ stroke: {
+ color: '#b6b6b6',
+ width: 1,
+ dashArray: 0
+ }
+ }
+ };
+ this.pointAnnotation = {
+ id: undefined,
+ x: 0,
+ y: null,
+ yAxisIndex: 0,
+ seriesIndex: undefined,
+ mouseEnter: undefined,
+ mouseLeave: undefined,
+ click: undefined,
+ marker: {
+ size: 4,
+ fillColor: '#fff',
+ strokeWidth: 2,
+ strokeColor: '#333',
+ shape: 'circle',
+ offsetX: 0,
+ offsetY: 0,
+ radius: 2,
+ cssClass: ''
+ },
+ label: {
+ borderColor: '#c2c2c2',
+ borderWidth: 1,
+ borderRadius: 2,
+ text: undefined,
+ textAnchor: 'middle',
+ offsetX: 0,
+ offsetY: 0,
+ mouseEnter: undefined,
+ mouseLeave: undefined,
+ click: undefined,
+ style: {
+ background: '#fff',
+ color: undefined,
+ fontSize: '11px',
+ fontFamily: undefined,
+ fontWeight: 400,
+ cssClass: '',
+ padding: {
+ left: 5,
+ right: 5,
+ top: 2,
+ bottom: 2
+ }
+ }
+ },
+ customSVG: {
+ // this will be deprecated in the next major version as it is going to be replaced with a better alternative below
+ SVG: undefined,
+ cssClass: undefined,
+ offsetX: 0,
+ offsetY: 0
+ },
+ image: {
+ path: undefined,
+ width: 20,
+ height: 20,
+ offsetX: 0,
+ offsetY: 0
+ }
+ };
+ this.yAxisAnnotation = {
+ id: undefined,
+ y: 0,
+ y2: null,
+ strokeDashArray: 1,
+ fillColor: '#c2c2c2',
+ borderColor: '#c2c2c2',
+ borderWidth: 1,
+ opacity: 0.3,
+ offsetX: 0,
+ offsetY: 0,
+ width: '100%',
+ yAxisIndex: 0,
+ label: {
+ borderColor: '#c2c2c2',
+ borderWidth: 1,
+ borderRadius: 2,
+ text: undefined,
+ textAnchor: 'end',
+ position: 'right',
+ offsetX: 0,
+ offsetY: -3,
+ mouseEnter: undefined,
+ mouseLeave: undefined,
+ click: undefined,
+ style: {
+ background: '#fff',
+ color: undefined,
+ fontSize: '11px',
+ fontFamily: undefined,
+ fontWeight: 400,
+ cssClass: '',
+ padding: {
+ left: 5,
+ right: 5,
+ top: 2,
+ bottom: 2
+ }
+ }
+ }
+ };
+ this.xAxisAnnotation = {
+ id: undefined,
+ x: 0,
+ x2: null,
+ strokeDashArray: 1,
+ fillColor: '#c2c2c2',
+ borderColor: '#c2c2c2',
+ borderWidth: 1,
+ opacity: 0.3,
+ offsetX: 0,
+ offsetY: 0,
+ label: {
+ borderColor: '#c2c2c2',
+ borderWidth: 1,
+ borderRadius: 2,
+ text: undefined,
+ textAnchor: 'middle',
+ orientation: 'vertical',
+ position: 'top',
+ offsetX: 0,
+ offsetY: 0,
+ mouseEnter: undefined,
+ mouseLeave: undefined,
+ click: undefined,
+ style: {
+ background: '#fff',
+ color: undefined,
+ fontSize: '11px',
+ fontFamily: undefined,
+ fontWeight: 400,
+ cssClass: '',
+ padding: {
+ left: 5,
+ right: 5,
+ top: 2,
+ bottom: 2
+ }
+ }
+ }
+ };
+ this.text = {
+ x: 0,
+ y: 0,
+ text: '',
+ textAnchor: 'start',
+ foreColor: undefined,
+ fontSize: '13px',
+ fontFamily: undefined,
+ fontWeight: 400,
+ appendTo: '.apexcharts-annotations',
+ backgroundColor: 'transparent',
+ borderColor: '#c2c2c2',
+ borderRadius: 0,
+ borderWidth: 0,
+ paddingLeft: 4,
+ paddingRight: 4,
+ paddingTop: 2,
+ paddingBottom: 2
+ };
+ }
+
+ _createClass(Options, [{
+ key: "init",
+ value: function init() {
+ return {
+ annotations: {
+ yaxis: [this.yAxisAnnotation],
+ xaxis: [this.xAxisAnnotation],
+ points: [this.pointAnnotation],
+ texts: [],
+ images: [],
+ shapes: []
+ },
+ chart: {
+ animations: {
+ enabled: true,
+ easing: 'easeinout',
+ // linear, easeout, easein, easeinout, swing, bounce, elastic
+ speed: 800,
+ animateGradually: {
+ delay: 150,
+ enabled: true
+ },
+ dynamicAnimation: {
+ enabled: true,
+ speed: 350
+ }
+ },
+ background: 'transparent',
+ locales: [en],
+ defaultLocale: 'en',
+ dropShadow: {
+ enabled: false,
+ enabledOnSeries: undefined,
+ top: 2,
+ left: 2,
+ blur: 4,
+ color: '#000',
+ opacity: 0.35
+ },
+ events: {
+ animationEnd: undefined,
+ beforeMount: undefined,
+ mounted: undefined,
+ updated: undefined,
+ click: undefined,
+ mouseMove: undefined,
+ mouseLeave: undefined,
+ xAxisLabelClick: undefined,
+ legendClick: undefined,
+ markerClick: undefined,
+ selection: undefined,
+ dataPointSelection: undefined,
+ dataPointMouseEnter: undefined,
+ dataPointMouseLeave: undefined,
+ beforeZoom: undefined,
+ beforeResetZoom: undefined,
+ zoomed: undefined,
+ scrolled: undefined,
+ brushScrolled: undefined
+ },
+ foreColor: '#373d3f',
+ fontFamily: 'Helvetica, Arial, sans-serif',
+ height: 'auto',
+ parentHeightOffset: 15,
+ redrawOnParentResize: true,
+ redrawOnWindowResize: true,
+ id: undefined,
+ group: undefined,
+ nonce: undefined,
+ offsetX: 0,
+ offsetY: 0,
+ selection: {
+ enabled: false,
+ type: 'x',
+ // selectedPoints: undefined, // default datapoints that should be selected automatically
+ fill: {
+ color: '#24292e',
+ opacity: 0.1
+ },
+ stroke: {
+ width: 1,
+ color: '#24292e',
+ opacity: 0.4,
+ dashArray: 3
+ },
+ xaxis: {
+ min: undefined,
+ max: undefined
+ },
+ yaxis: {
+ min: undefined,
+ max: undefined
+ }
+ },
+ sparkline: {
+ enabled: false
+ },
+ brush: {
+ enabled: false,
+ autoScaleYaxis: true,
+ target: undefined,
+ targets: undefined
+ },
+ stacked: false,
+ stackOnlyBar: true,
+ // mixed chart with stacked bars and line series - incorrect line draw #907
+ stackType: 'normal',
+ toolbar: {
+ show: true,
+ offsetX: 0,
+ offsetY: 0,
+ tools: {
+ download: true,
+ selection: true,
+ zoom: true,
+ zoomin: true,
+ zoomout: true,
+ pan: true,
+ reset: true,
+ customIcons: []
+ },
+ export: {
+ csv: {
+ filename: undefined,
+ columnDelimiter: ',',
+ headerCategory: 'category',
+ headerValue: 'value',
+ dateFormatter: function dateFormatter(timestamp) {
+ return new Date(timestamp).toDateString();
+ }
+ },
+ png: {
+ filename: undefined
+ },
+ svg: {
+ filename: undefined
+ }
+ },
+ autoSelected: 'zoom' // accepts -> zoom, pan, selection
+
+ },
+ type: 'line',
+ width: '100%',
+ zoom: {
+ enabled: true,
+ type: 'x',
+ autoScaleYaxis: false,
+ zoomedArea: {
+ fill: {
+ color: '#90CAF9',
+ opacity: 0.4
+ },
+ stroke: {
+ color: '#0D47A1',
+ opacity: 0.4,
+ width: 1
+ }
+ }
+ }
+ },
+ plotOptions: {
+ area: {
+ fillTo: 'origin'
+ },
+ bar: {
+ horizontal: false,
+ columnWidth: '70%',
+ // should be in percent 0 - 100
+ barHeight: '70%',
+ // should be in percent 0 - 100
+ distributed: false,
+ borderRadius: 0,
+ borderRadiusApplication: 'around',
+ // [around, end]
+ borderRadiusWhenStacked: 'last',
+ // [all, last]
+ rangeBarOverlap: true,
+ rangeBarGroupRows: false,
+ hideZeroBarsWhenGrouped: false,
+ isDumbbell: false,
+ dumbbellColors: undefined,
+ isFunnel: false,
+ isFunnel3d: true,
+ colors: {
+ ranges: [],
+ backgroundBarColors: [],
+ backgroundBarOpacity: 1,
+ backgroundBarRadius: 0
+ },
+ dataLabels: {
+ position: 'top',
+ // top, center, bottom
+ maxItems: 100,
+ hideOverflowingLabels: true,
+ orientation: 'horizontal',
+ total: {
+ enabled: false,
+ formatter: undefined,
+ offsetX: 0,
+ offsetY: 0,
+ style: {
+ color: '#373d3f',
+ fontSize: '12px',
+ fontFamily: undefined,
+ fontWeight: 600
+ }
+ }
+ }
+ },
+ bubble: {
+ zScaling: true,
+ minBubbleRadius: undefined,
+ maxBubbleRadius: undefined
+ },
+ candlestick: {
+ colors: {
+ upward: '#00B746',
+ downward: '#EF403C'
+ },
+ wick: {
+ useFillColor: true
+ }
+ },
+ boxPlot: {
+ colors: {
+ upper: '#00E396',
+ lower: '#008FFB'
+ }
+ },
+ heatmap: {
+ radius: 2,
+ enableShades: true,
+ shadeIntensity: 0.5,
+ reverseNegativeShade: false,
+ distributed: false,
+ useFillColorAsStroke: false,
+ colorScale: {
+ inverse: false,
+ ranges: [],
+ min: undefined,
+ max: undefined
+ }
+ },
+ treemap: {
+ enableShades: true,
+ shadeIntensity: 0.5,
+ distributed: false,
+ reverseNegativeShade: false,
+ useFillColorAsStroke: false,
+ borderRadius: 4,
+ dataLabels: {
+ format: 'scale' // scale | truncate
+
+ },
+ colorScale: {
+ inverse: false,
+ ranges: [],
+ min: undefined,
+ max: undefined
+ }
+ },
+ radialBar: {
+ inverseOrder: false,
+ startAngle: 0,
+ endAngle: 360,
+ offsetX: 0,
+ offsetY: 0,
+ hollow: {
+ margin: 5,
+ size: '50%',
+ background: 'transparent',
+ image: undefined,
+ imageWidth: 150,
+ imageHeight: 150,
+ imageOffsetX: 0,
+ imageOffsetY: 0,
+ imageClipped: true,
+ position: 'front',
+ dropShadow: {
+ enabled: false,
+ top: 0,
+ left: 0,
+ blur: 3,
+ color: '#000',
+ opacity: 0.5
+ }
+ },
+ track: {
+ show: true,
+ startAngle: undefined,
+ endAngle: undefined,
+ background: '#f2f2f2',
+ strokeWidth: '97%',
+ opacity: 1,
+ margin: 5,
+ // margin is in pixels
+ dropShadow: {
+ enabled: false,
+ top: 0,
+ left: 0,
+ blur: 3,
+ color: '#000',
+ opacity: 0.5
+ }
+ },
+ dataLabels: {
+ show: true,
+ name: {
+ show: true,
+ fontSize: '16px',
+ fontFamily: undefined,
+ fontWeight: 600,
+ color: undefined,
+ offsetY: 0,
+ formatter: function formatter(val) {
+ return val;
+ }
+ },
+ value: {
+ show: true,
+ fontSize: '14px',
+ fontFamily: undefined,
+ fontWeight: 400,
+ color: undefined,
+ offsetY: 16,
+ formatter: function formatter(val) {
+ return val + '%';
+ }
+ },
+ total: {
+ show: false,
+ label: 'Total',
+ fontSize: '16px',
+ fontWeight: 600,
+ fontFamily: undefined,
+ color: undefined,
+ formatter: function formatter(w) {
+ return w.globals.seriesTotals.reduce(function (a, b) {
+ return a + b;
+ }, 0) / w.globals.series.length + '%';
+ }
+ }
+ },
+ barLabels: {
+ enabled: false,
+ margin: 5,
+ useSeriesColors: true,
+ fontFamily: undefined,
+ fontWeight: 600,
+ fontSize: '16px',
+ formatter: function formatter(val) {
+ return val;
+ },
+ onClick: undefined
+ }
+ },
+ pie: {
+ customScale: 1,
+ offsetX: 0,
+ offsetY: 0,
+ startAngle: 0,
+ endAngle: 360,
+ expandOnClick: true,
+ dataLabels: {
+ // These are the percentage values which are displayed on slice
+ offset: 0,
+ // offset by which labels will move outside
+ minAngleToShowLabel: 10
+ },
+ donut: {
+ size: '65%',
+ background: 'transparent',
+ labels: {
+ // These are the inner labels appearing inside donut
+ show: false,
+ name: {
+ show: true,
+ fontSize: '16px',
+ fontFamily: undefined,
+ fontWeight: 600,
+ color: undefined,
+ offsetY: -10,
+ formatter: function formatter(val) {
+ return val;
+ }
+ },
+ value: {
+ show: true,
+ fontSize: '20px',
+ fontFamily: undefined,
+ fontWeight: 400,
+ color: undefined,
+ offsetY: 10,
+ formatter: function formatter(val) {
+ return val;
+ }
+ },
+ total: {
+ show: false,
+ showAlways: false,
+ label: 'Total',
+ fontSize: '16px',
+ fontWeight: 400,
+ fontFamily: undefined,
+ color: undefined,
+ formatter: function formatter(w) {
+ return w.globals.seriesTotals.reduce(function (a, b) {
+ return a + b;
+ }, 0);
+ }
+ }
+ }
+ }
+ },
+ polarArea: {
+ rings: {
+ strokeWidth: 1,
+ strokeColor: '#e8e8e8'
+ },
+ spokes: {
+ strokeWidth: 1,
+ connectorColors: '#e8e8e8'
+ }
+ },
+ radar: {
+ size: undefined,
+ offsetX: 0,
+ offsetY: 0,
+ polygons: {
+ // strokeColor: '#e8e8e8', // should be deprecated in the minor version i.e 3.2
+ strokeWidth: 1,
+ strokeColors: '#e8e8e8',
+ connectorColors: '#e8e8e8',
+ fill: {
+ colors: undefined
+ }
+ }
+ }
+ },
+ colors: undefined,
+ dataLabels: {
+ enabled: true,
+ enabledOnSeries: undefined,
+ formatter: function formatter(val) {
+ return val !== null ? val : '';
+ },
+ textAnchor: 'middle',
+ distributed: false,
+ offsetX: 0,
+ offsetY: 0,
+ style: {
+ fontSize: '12px',
+ fontFamily: undefined,
+ fontWeight: 600,
+ colors: undefined
+ },
+ background: {
+ enabled: true,
+ foreColor: '#fff',
+ borderRadius: 2,
+ padding: 4,
+ opacity: 0.9,
+ borderWidth: 1,
+ borderColor: '#fff',
+ dropShadow: {
+ enabled: false,
+ top: 1,
+ left: 1,
+ blur: 1,
+ color: '#000',
+ opacity: 0.45
+ }
+ },
+ dropShadow: {
+ enabled: false,
+ top: 1,
+ left: 1,
+ blur: 1,
+ color: '#000',
+ opacity: 0.45
+ }
+ },
+ fill: {
+ type: 'solid',
+ colors: undefined,
+ // array of colors
+ opacity: 0.85,
+ gradient: {
+ shade: 'dark',
+ type: 'horizontal',
+ shadeIntensity: 0.5,
+ gradientToColors: undefined,
+ inverseColors: true,
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [0, 50, 100],
+ colorStops: []
+ },
+ image: {
+ src: [],
+ width: undefined,
+ // optional
+ height: undefined // optional
+
+ },
+ pattern: {
+ style: 'squares',
+ // String | Array of Strings
+ width: 6,
+ height: 6,
+ strokeWidth: 2
+ }
+ },
+ forecastDataPoints: {
+ count: 0,
+ fillOpacity: 0.5,
+ strokeWidth: undefined,
+ dashArray: 4
+ },
+ grid: {
+ show: true,
+ borderColor: '#e0e0e0',
+ strokeDashArray: 0,
+ position: 'back',
+ xaxis: {
+ lines: {
+ show: false
+ }
+ },
+ yaxis: {
+ lines: {
+ show: true
+ }
+ },
+ row: {
+ colors: undefined,
+ // takes as array which will be repeated on rows
+ opacity: 0.5
+ },
+ column: {
+ colors: undefined,
+ // takes an array which will be repeated on columns
+ opacity: 0.5
+ },
+ padding: {
+ top: 0,
+ right: 10,
+ bottom: 0,
+ left: 12
+ }
+ },
+ labels: [],
+ legend: {
+ show: true,
+ showForSingleSeries: false,
+ showForNullSeries: true,
+ showForZeroSeries: true,
+ floating: false,
+ position: 'bottom',
+ // whether to position legends in 1 of 4
+ // direction - top, bottom, left, right
+ horizontalAlign: 'center',
+ // when position top/bottom, you can specify whether to align legends left, right or center
+ inverseOrder: false,
+ fontSize: '12px',
+ fontFamily: undefined,
+ fontWeight: 400,
+ width: undefined,
+ height: undefined,
+ formatter: undefined,
+ tooltipHoverFormatter: undefined,
+ offsetX: -20,
+ offsetY: 4,
+ customLegendItems: [],
+ labels: {
+ colors: undefined,
+ useSeriesColors: false
+ },
+ markers: {
+ width: 12,
+ height: 12,
+ strokeWidth: 0,
+ fillColors: undefined,
+ strokeColor: '#fff',
+ radius: 12,
+ customHTML: undefined,
+ offsetX: 0,
+ offsetY: 0,
+ onClick: undefined
+ },
+ itemMargin: {
+ horizontal: 5,
+ vertical: 2
+ },
+ onItemClick: {
+ toggleDataSeries: true
+ },
+ onItemHover: {
+ highlightDataSeries: true
+ }
+ },
+ markers: {
+ discrete: [],
+ size: 0,
+ colors: undefined,
+ //strokeColor: '#fff', // TODO: deprecate in major version 4.0
+ strokeColors: '#fff',
+ strokeWidth: 2,
+ strokeOpacity: 0.9,
+ strokeDashArray: 0,
+ fillOpacity: 1,
+ shape: 'circle',
+ width: 8,
+ // only applicable when shape is rect/square
+ height: 8,
+ // only applicable when shape is rect/square
+ radius: 2,
+ offsetX: 0,
+ offsetY: 0,
+ onClick: undefined,
+ onDblClick: undefined,
+ showNullDataPoints: true,
+ hover: {
+ size: undefined,
+ sizeOffset: 3
+ }
+ },
+ noData: {
+ text: undefined,
+ align: 'center',
+ verticalAlign: 'middle',
+ offsetX: 0,
+ offsetY: 0,
+ style: {
+ color: undefined,
+ fontSize: '14px',
+ fontFamily: undefined
+ }
+ },
+ responsive: [],
+ // breakpoints should follow ascending order 400, then 700, then 1000
+ series: undefined,
+ states: {
+ normal: {
+ filter: {
+ type: 'none',
+ value: 0
+ }
+ },
+ hover: {
+ filter: {
+ type: 'lighten',
+ value: 0.1
+ }
+ },
+ active: {
+ allowMultipleDataPointsSelection: false,
+ filter: {
+ type: 'darken',
+ value: 0.5
+ }
+ }
+ },
+ title: {
+ text: undefined,
+ align: 'left',
+ margin: 5,
+ offsetX: 0,
+ offsetY: 0,
+ floating: false,
+ style: {
+ fontSize: '14px',
+ fontWeight: 900,
+ fontFamily: undefined,
+ color: undefined
+ }
+ },
+ subtitle: {
+ text: undefined,
+ align: 'left',
+ margin: 5,
+ offsetX: 0,
+ offsetY: 30,
+ floating: false,
+ style: {
+ fontSize: '12px',
+ fontWeight: 400,
+ fontFamily: undefined,
+ color: undefined
+ }
+ },
+ stroke: {
+ show: true,
+ curve: 'smooth',
+ // "smooth" / "straight" / "monotoneCubic" / "stepline" / "linestep"
+ lineCap: 'butt',
+ // round, butt , square
+ width: 2,
+ colors: undefined,
+ // array of colors
+ dashArray: 0,
+ // single value or array of values
+ fill: {
+ type: 'solid',
+ colors: undefined,
+ // array of colors
+ opacity: 0.85,
+ gradient: {
+ shade: 'dark',
+ type: 'horizontal',
+ shadeIntensity: 0.5,
+ gradientToColors: undefined,
+ inverseColors: true,
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [0, 50, 100],
+ colorStops: []
+ }
+ }
+ },
+ tooltip: {
+ enabled: true,
+ enabledOnSeries: undefined,
+ shared: true,
+ hideEmptySeries: false,
+ followCursor: false,
+ // when disabled, the tooltip will show on top of the series instead of mouse position
+ intersect: false,
+ // when enabled, tooltip will only show when user directly hovers over point
+ inverseOrder: false,
+ custom: undefined,
+ fillSeriesColor: false,
+ theme: 'light',
+ cssClass: '',
+ style: {
+ fontSize: '12px',
+ fontFamily: undefined
+ },
+ onDatasetHover: {
+ highlightDataSeries: false
+ },
+ x: {
+ // x value
+ show: true,
+ format: 'dd MMM',
+ // dd/MM, dd MMM yy, dd MMM yyyy
+ formatter: undefined // a custom user supplied formatter function
+
+ },
+ y: {
+ formatter: undefined,
+ title: {
+ formatter: function formatter(seriesName) {
+ return seriesName ? seriesName + ': ' : '';
+ }
+ }
+ },
+ z: {
+ formatter: undefined,
+ title: 'Size: '
+ },
+ marker: {
+ show: true,
+ fillColors: undefined
+ },
+ items: {
+ display: 'flex'
+ },
+ fixed: {
+ enabled: false,
+ position: 'topRight',
+ // topRight, topLeft, bottomRight, bottomLeft
+ offsetX: 0,
+ offsetY: 0
+ }
+ },
+ xaxis: {
+ type: 'category',
+ categories: [],
+ convertedCatToNumeric: false,
+ // internal property which should not be altered outside
+ offsetX: 0,
+ offsetY: 0,
+ overwriteCategories: undefined,
+ labels: {
+ show: true,
+ rotate: -45,
+ rotateAlways: false,
+ hideOverlappingLabels: true,
+ trim: false,
+ minHeight: undefined,
+ maxHeight: 120,
+ showDuplicates: true,
+ style: {
+ colors: [],
+ fontSize: '12px',
+ fontWeight: 400,
+ fontFamily: undefined,
+ cssClass: ''
+ },
+ offsetX: 0,
+ offsetY: 0,
+ format: undefined,
+ formatter: undefined,
+ // custom formatter function which will override format
+ datetimeUTC: true,
+ datetimeFormatter: {
+ year: 'yyyy',
+ month: "MMM 'yy",
+ day: 'dd MMM',
+ hour: 'HH:mm',
+ minute: 'HH:mm:ss',
+ second: 'HH:mm:ss'
+ }
+ },
+ group: {
+ groups: [],
+ style: {
+ colors: [],
+ fontSize: '12px',
+ fontWeight: 400,
+ fontFamily: undefined,
+ cssClass: ''
+ }
+ },
+ axisBorder: {
+ show: true,
+ color: '#e0e0e0',
+ width: '100%',
+ height: 1,
+ offsetX: 0,
+ offsetY: 0
+ },
+ axisTicks: {
+ show: true,
+ color: '#e0e0e0',
+ height: 6,
+ offsetX: 0,
+ offsetY: 0
+ },
+ stepSize: undefined,
+ tickAmount: undefined,
+ tickPlacement: 'on',
+ min: undefined,
+ max: undefined,
+ range: undefined,
+ floating: false,
+ decimalsInFloat: undefined,
+ position: 'bottom',
+ title: {
+ text: undefined,
+ offsetX: 0,
+ offsetY: 0,
+ style: {
+ color: undefined,
+ fontSize: '12px',
+ fontWeight: 900,
+ fontFamily: undefined,
+ cssClass: ''
+ }
+ },
+ crosshairs: {
+ show: true,
+ width: 1,
+ // tickWidth/barWidth or an integer
+ position: 'back',
+ opacity: 0.9,
+ stroke: {
+ color: '#b6b6b6',
+ width: 1,
+ dashArray: 3
+ },
+ fill: {
+ type: 'solid',
+ // solid, gradient
+ color: '#B1B9C4',
+ gradient: {
+ colorFrom: '#D8E3F0',
+ colorTo: '#BED1E6',
+ stops: [0, 100],
+ opacityFrom: 0.4,
+ opacityTo: 0.5
+ }
+ },
+ dropShadow: {
+ enabled: false,
+ left: 0,
+ top: 0,
+ blur: 1,
+ opacity: 0.4
+ }
+ },
+ tooltip: {
+ enabled: true,
+ offsetY: 0,
+ formatter: undefined,
+ style: {
+ fontSize: '12px',
+ fontFamily: undefined
+ }
+ }
+ },
+ yaxis: this.yAxis,
+ theme: {
+ mode: 'light',
+ palette: 'palette1',
+ // If defined, it will overwrite globals.colors variable
+ monochrome: {
+ // monochrome allows you to select just 1 color and fill out the rest with light/dark shade (intensity can be selected)
+ enabled: false,
+ color: '#008FFB',
+ shadeTo: 'light',
+ shadeIntensity: 0.65
+ }
+ }
+ };
+ }
+ }]);
+
+ return Options;
+ }();
+
+ /**
+ * ApexCharts Annotations Class for drawing lines/rects on both xaxis and yaxis.
+ *
+ * @module Annotations
+ **/
+
+ var Annotations = /*#__PURE__*/function () {
+ function Annotations(ctx) {
+ _classCallCheck(this, Annotations);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.graphics = new Graphics(this.ctx);
+
+ if (this.w.globals.isBarHorizontal) {
+ this.invertAxis = true;
+ }
+
+ this.helpers = new Helpers$4(this);
+ this.xAxisAnnotations = new XAnnotations(this);
+ this.yAxisAnnotations = new YAnnotations(this);
+ this.pointsAnnotations = new PointAnnotations(this);
+
+ if (this.w.globals.isBarHorizontal && this.w.config.yaxis[0].reversed) {
+ this.inversedReversedAxis = true;
+ }
+
+ this.xDivision = this.w.globals.gridWidth / this.w.globals.dataPoints;
+ }
+
+ _createClass(Annotations, [{
+ key: "drawAxesAnnotations",
+ value: function drawAxesAnnotations() {
+ var w = this.w;
+
+ if (w.globals.axisCharts) {
+ var yAnnotations = this.yAxisAnnotations.drawYAxisAnnotations();
+ var xAnnotations = this.xAxisAnnotations.drawXAxisAnnotations();
+ var pointAnnotations = this.pointsAnnotations.drawPointAnnotations();
+ var initialAnim = w.config.chart.animations.enabled;
+ var annoArray = [yAnnotations, xAnnotations, pointAnnotations];
+ var annoElArray = [xAnnotations.node, yAnnotations.node, pointAnnotations.node];
+
+ for (var i = 0; i < 3; i++) {
+ w.globals.dom.elGraphical.add(annoArray[i]);
+
+ if (initialAnim && !w.globals.resized && !w.globals.dataChanged) {
+ // fixes apexcharts/apexcharts.js#685
+ if (w.config.chart.type !== 'scatter' && w.config.chart.type !== 'bubble' && w.globals.dataPoints > 1) {
+ annoElArray[i].classList.add('apexcharts-element-hidden');
+ }
+ }
+
+ w.globals.delayedElements.push({
+ el: annoElArray[i],
+ index: 0
+ });
+ } // background sizes needs to be calculated after text is drawn, so calling them last
+
+
+ this.helpers.annotationsBackground();
+ }
+ }
+ }, {
+ key: "drawImageAnnos",
+ value: function drawImageAnnos() {
+ var _this = this;
+
+ var w = this.w;
+ w.config.annotations.images.map(function (s, index) {
+ _this.addImage(s, index);
+ });
+ }
+ }, {
+ key: "drawTextAnnos",
+ value: function drawTextAnnos() {
+ var _this2 = this;
+
+ var w = this.w;
+ w.config.annotations.texts.map(function (t, index) {
+ _this2.addText(t, index);
+ });
+ }
+ }, {
+ key: "addXaxisAnnotation",
+ value: function addXaxisAnnotation(anno, parent, index) {
+ this.xAxisAnnotations.addXaxisAnnotation(anno, parent, index);
+ }
+ }, {
+ key: "addYaxisAnnotation",
+ value: function addYaxisAnnotation(anno, parent, index) {
+ this.yAxisAnnotations.addYaxisAnnotation(anno, parent, index);
+ }
+ }, {
+ key: "addPointAnnotation",
+ value: function addPointAnnotation(anno, parent, index) {
+ this.pointsAnnotations.addPointAnnotation(anno, parent, index);
+ }
+ }, {
+ key: "addText",
+ value: function addText(params, index) {
+ var x = params.x,
+ y = params.y,
+ text = params.text,
+ textAnchor = params.textAnchor,
+ foreColor = params.foreColor,
+ fontSize = params.fontSize,
+ fontFamily = params.fontFamily,
+ fontWeight = params.fontWeight,
+ cssClass = params.cssClass,
+ backgroundColor = params.backgroundColor,
+ borderWidth = params.borderWidth,
+ strokeDashArray = params.strokeDashArray,
+ borderRadius = params.borderRadius,
+ borderColor = params.borderColor,
+ _params$appendTo = params.appendTo,
+ appendTo = _params$appendTo === void 0 ? '.apexcharts-svg' : _params$appendTo,
+ _params$paddingLeft = params.paddingLeft,
+ paddingLeft = _params$paddingLeft === void 0 ? 4 : _params$paddingLeft,
+ _params$paddingRight = params.paddingRight,
+ paddingRight = _params$paddingRight === void 0 ? 4 : _params$paddingRight,
+ _params$paddingBottom = params.paddingBottom,
+ paddingBottom = _params$paddingBottom === void 0 ? 2 : _params$paddingBottom,
+ _params$paddingTop = params.paddingTop,
+ paddingTop = _params$paddingTop === void 0 ? 2 : _params$paddingTop;
+ var w = this.w;
+ var elText = this.graphics.drawText({
+ x: x,
+ y: y,
+ text: text,
+ textAnchor: textAnchor || 'start',
+ fontSize: fontSize || '12px',
+ fontWeight: fontWeight || 'regular',
+ fontFamily: fontFamily || w.config.chart.fontFamily,
+ foreColor: foreColor || w.config.chart.foreColor,
+ cssClass: 'apexcharts-text ' + cssClass ? cssClass : ''
+ });
+ var parent = w.globals.dom.baseEl.querySelector(appendTo);
+
+ if (parent) {
+ parent.appendChild(elText.node);
+ }
+
+ var textRect = elText.bbox();
+
+ if (text) {
+ var elRect = this.graphics.drawRect(textRect.x - paddingLeft, textRect.y - paddingTop, textRect.width + paddingLeft + paddingRight, textRect.height + paddingBottom + paddingTop, borderRadius, backgroundColor ? backgroundColor : 'transparent', 1, borderWidth, borderColor, strokeDashArray);
+ parent.insertBefore(elRect.node, elText.node);
+ }
+ }
+ }, {
+ key: "addImage",
+ value: function addImage(params, index) {
+ var w = this.w;
+ var path = params.path,
+ _params$x = params.x,
+ x = _params$x === void 0 ? 0 : _params$x,
+ _params$y = params.y,
+ y = _params$y === void 0 ? 0 : _params$y,
+ _params$width = params.width,
+ width = _params$width === void 0 ? 20 : _params$width,
+ _params$height = params.height,
+ height = _params$height === void 0 ? 20 : _params$height,
+ _params$appendTo2 = params.appendTo,
+ appendTo = _params$appendTo2 === void 0 ? '.apexcharts-svg' : _params$appendTo2;
+ var img = w.globals.dom.Paper.image(path);
+ img.size(width, height).move(x, y);
+ var parent = w.globals.dom.baseEl.querySelector(appendTo);
+
+ if (parent) {
+ parent.appendChild(img.node);
+ }
+
+ return img;
+ } // The addXaxisAnnotation method requires a parent class, and user calling this method externally on the chart instance may not specify parent, hence a different method
+
+ }, {
+ key: "addXaxisAnnotationExternal",
+ value: function addXaxisAnnotationExternal(params, pushToMemory, context) {
+ this.addAnnotationExternal({
+ params: params,
+ pushToMemory: pushToMemory,
+ context: context,
+ type: 'xaxis',
+ contextMethod: context.addXaxisAnnotation
+ });
+ return context;
+ }
+ }, {
+ key: "addYaxisAnnotationExternal",
+ value: function addYaxisAnnotationExternal(params, pushToMemory, context) {
+ this.addAnnotationExternal({
+ params: params,
+ pushToMemory: pushToMemory,
+ context: context,
+ type: 'yaxis',
+ contextMethod: context.addYaxisAnnotation
+ });
+ return context;
+ }
+ }, {
+ key: "addPointAnnotationExternal",
+ value: function addPointAnnotationExternal(params, pushToMemory, context) {
+ if (typeof this.invertAxis === 'undefined') {
+ this.invertAxis = context.w.globals.isBarHorizontal;
+ }
+
+ this.addAnnotationExternal({
+ params: params,
+ pushToMemory: pushToMemory,
+ context: context,
+ type: 'point',
+ contextMethod: context.addPointAnnotation
+ });
+ return context;
+ }
+ }, {
+ key: "addAnnotationExternal",
+ value: function addAnnotationExternal(_ref) {
+ var params = _ref.params,
+ pushToMemory = _ref.pushToMemory,
+ context = _ref.context,
+ type = _ref.type,
+ contextMethod = _ref.contextMethod;
+ var me = context;
+ var w = me.w;
+ var parent = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(type, "-annotations"));
+ var index = parent.childNodes.length + 1;
+ var options = new Options();
+ var axesAnno = Object.assign({}, type === 'xaxis' ? options.xAxisAnnotation : type === 'yaxis' ? options.yAxisAnnotation : options.pointAnnotation);
+ var anno = Utils$1.extend(axesAnno, params);
+
+ switch (type) {
+ case 'xaxis':
+ this.addXaxisAnnotation(anno, parent, index);
+ break;
+
+ case 'yaxis':
+ this.addYaxisAnnotation(anno, parent, index);
+ break;
+
+ case 'point':
+ this.addPointAnnotation(anno, parent, index);
+ break;
+ } // add background
+
+
+ var axesAnnoLabel = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(type, "-annotations .apexcharts-").concat(type, "-annotation-label[rel='").concat(index, "']"));
+ var elRect = this.helpers.addBackgroundToAnno(axesAnnoLabel, anno);
+
+ if (elRect) {
+ parent.insertBefore(elRect.node, axesAnnoLabel);
+ }
+
+ if (pushToMemory) {
+ w.globals.memory.methodsToExec.push({
+ context: me,
+ id: anno.id ? anno.id : Utils$1.randomId(),
+ method: contextMethod,
+ label: 'addAnnotation',
+ params: params
+ });
+ }
+
+ return context;
+ }
+ }, {
+ key: "clearAnnotations",
+ value: function clearAnnotations(ctx) {
+ var w = ctx.w;
+ var annos = w.globals.dom.baseEl.querySelectorAll('.apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations'); // annotations added externally should be cleared out too
+
+ w.globals.memory.methodsToExec.map(function (m, i) {
+ if (m.label === 'addText' || m.label === 'addAnnotation') {
+ w.globals.memory.methodsToExec.splice(i, 1);
+ }
+ });
+ annos = Utils$1.listToArray(annos); // delete the DOM elements
+
+ Array.prototype.forEach.call(annos, function (a) {
+ while (a.firstChild) {
+ a.removeChild(a.firstChild);
+ }
+ });
+ }
+ }, {
+ key: "removeAnnotation",
+ value: function removeAnnotation(ctx, id) {
+ var w = ctx.w;
+ var annos = w.globals.dom.baseEl.querySelectorAll(".".concat(id));
+
+ if (annos) {
+ w.globals.memory.methodsToExec.map(function (m, i) {
+ if (m.id === id) {
+ w.globals.memory.methodsToExec.splice(i, 1);
+ }
+ });
+ Array.prototype.forEach.call(annos, function (a) {
+ a.parentElement.removeChild(a);
+ });
+ }
+ }
+ }]);
+
+ return Annotations;
+ }();
+
+ /**
+ * ApexCharts Default Class for setting default options for all chart types.
+ *
+ * @module Defaults
+ **/
+
+ var getRangeValues = function getRangeValues(_ref) {
+ var _w$config$series$seri;
+
+ var isTimeline = _ref.isTimeline,
+ ctx = _ref.ctx,
+ seriesIndex = _ref.seriesIndex,
+ dataPointIndex = _ref.dataPointIndex,
+ y1 = _ref.y1,
+ y2 = _ref.y2,
+ w = _ref.w;
+ var start = w.globals.seriesRangeStart[seriesIndex][dataPointIndex];
+ var end = w.globals.seriesRangeEnd[seriesIndex][dataPointIndex];
+ var ylabel = w.globals.labels[dataPointIndex];
+ var seriesName = w.config.series[seriesIndex].name ? w.config.series[seriesIndex].name : '';
+ var yLbFormatter = w.globals.ttKeyFormatter;
+ var yLbTitleFormatter = w.config.tooltip.y.title.formatter;
+ var opts = {
+ w: w,
+ seriesIndex: seriesIndex,
+ dataPointIndex: dataPointIndex,
+ start: start,
+ end: end
+ };
+
+ if (typeof yLbTitleFormatter === 'function') {
+ seriesName = yLbTitleFormatter(seriesName, opts);
+ }
+
+ if ((_w$config$series$seri = w.config.series[seriesIndex].data[dataPointIndex]) !== null && _w$config$series$seri !== void 0 && _w$config$series$seri.x) {
+ ylabel = w.config.series[seriesIndex].data[dataPointIndex].x;
+ }
+
+ if (!isTimeline) {
+ if (w.config.xaxis.type === 'datetime') {
+ var xFormat = new Formatters(ctx);
+ ylabel = xFormat.xLabelFormat(w.globals.ttKeyFormatter, ylabel, ylabel, {
+ i: undefined,
+ dateFormatter: new DateTime(ctx).formatDate,
+ w: w
+ });
+ }
+ }
+
+ if (typeof yLbFormatter === 'function') {
+ ylabel = yLbFormatter(ylabel, opts);
+ }
+
+ if (Number.isFinite(y1) && Number.isFinite(y2)) {
+ start = y1;
+ end = y2;
+ }
+
+ var startVal = '';
+ var endVal = '';
+ var color = w.globals.colors[seriesIndex];
+
+ if (w.config.tooltip.x.formatter === undefined) {
+ if (w.config.xaxis.type === 'datetime') {
+ var datetimeObj = new DateTime(ctx);
+ startVal = datetimeObj.formatDate(datetimeObj.getDate(start), w.config.tooltip.x.format);
+ endVal = datetimeObj.formatDate(datetimeObj.getDate(end), w.config.tooltip.x.format);
+ } else {
+ startVal = start;
+ endVal = end;
+ }
+ } else {
+ startVal = w.config.tooltip.x.formatter(start);
+ endVal = w.config.tooltip.x.formatter(end);
+ }
+
+ return {
+ start: start,
+ end: end,
+ startVal: startVal,
+ endVal: endVal,
+ ylabel: ylabel,
+ color: color,
+ seriesName: seriesName
+ };
+ };
+
+ var buildRangeTooltipHTML = function buildRangeTooltipHTML(opts) {
+ var color = opts.color,
+ seriesName = opts.seriesName,
+ ylabel = opts.ylabel,
+ start = opts.start,
+ end = opts.end,
+ seriesIndex = opts.seriesIndex,
+ dataPointIndex = opts.dataPointIndex;
+ var formatter = opts.ctx.tooltip.tooltipLabels.getFormatters(seriesIndex);
+ start = formatter.yLbFormatter(start);
+ end = formatter.yLbFormatter(end);
+ var val = formatter.yLbFormatter(opts.w.globals.series[seriesIndex][dataPointIndex]);
+ var valueHTML = '';
+ var rangeValues = "\n ".concat(start, "\n - \n ").concat(end, "\n ");
+
+ if (opts.w.globals.comboCharts) {
+ if (opts.w.config.series[seriesIndex].type === 'rangeArea' || opts.w.config.series[seriesIndex].type === 'rangeBar') {
+ valueHTML = rangeValues;
+ } else {
+ valueHTML = "".concat(val, "");
+ }
+ } else {
+ valueHTML = rangeValues;
+ }
+
+ return '';
+ };
+
+ var Defaults = /*#__PURE__*/function () {
+ function Defaults(opts) {
+ _classCallCheck(this, Defaults);
+
+ this.opts = opts;
+ }
+
+ _createClass(Defaults, [{
+ key: "hideYAxis",
+ value: function hideYAxis() {
+ this.opts.yaxis[0].show = false;
+ this.opts.yaxis[0].title.text = '';
+ this.opts.yaxis[0].axisBorder.show = false;
+ this.opts.yaxis[0].axisTicks.show = false;
+ this.opts.yaxis[0].floating = true;
+ }
+ }, {
+ key: "line",
+ value: function line() {
+ return {
+ chart: {
+ animations: {
+ easing: 'swing'
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: 5,
+ curve: 'straight'
+ },
+ markers: {
+ size: 0,
+ hover: {
+ sizeOffset: 6
+ }
+ },
+ xaxis: {
+ crosshairs: {
+ width: 1
+ }
+ }
+ };
+ }
+ }, {
+ key: "sparkline",
+ value: function sparkline(defaults) {
+ this.hideYAxis();
+ var ret = {
+ grid: {
+ show: false,
+ padding: {
+ left: 0,
+ right: 0,
+ top: 0,
+ bottom: 0
+ }
+ },
+ legend: {
+ show: false
+ },
+ xaxis: {
+ labels: {
+ show: false
+ },
+ tooltip: {
+ enabled: false
+ },
+ axisBorder: {
+ show: false
+ },
+ axisTicks: {
+ show: false
+ }
+ },
+ chart: {
+ toolbar: {
+ show: false
+ },
+ zoom: {
+ enabled: false
+ }
+ },
+ dataLabels: {
+ enabled: false
+ }
+ };
+ return Utils$1.extend(defaults, ret);
+ }
+ }, {
+ key: "bar",
+ value: function bar() {
+ return {
+ chart: {
+ stacked: false,
+ animations: {
+ easing: 'swing'
+ }
+ },
+ plotOptions: {
+ bar: {
+ dataLabels: {
+ position: 'center'
+ }
+ }
+ },
+ dataLabels: {
+ style: {
+ colors: ['#fff']
+ },
+ background: {
+ enabled: false
+ }
+ },
+ stroke: {
+ width: 0,
+ lineCap: 'round'
+ },
+ fill: {
+ opacity: 0.85
+ },
+ legend: {
+ markers: {
+ shape: 'square',
+ radius: 2,
+ size: 8
+ }
+ },
+ tooltip: {
+ shared: false,
+ intersect: true
+ },
+ xaxis: {
+ tooltip: {
+ enabled: false
+ },
+ tickPlacement: 'between',
+ crosshairs: {
+ width: 'barWidth',
+ position: 'back',
+ fill: {
+ type: 'gradient'
+ },
+ dropShadow: {
+ enabled: false
+ },
+ stroke: {
+ width: 0
+ }
+ }
+ }
+ };
+ }
+ }, {
+ key: "funnel",
+ value: function funnel() {
+ this.hideYAxis();
+ return _objectSpread2(_objectSpread2({}, this.bar()), {}, {
+ chart: {
+ animations: {
+ easing: 'linear',
+ speed: 800,
+ animateGradually: {
+ enabled: false
+ }
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ borderRadiusApplication: 'around',
+ borderRadius: 0,
+ dataLabels: {
+ position: 'center'
+ }
+ }
+ },
+ grid: {
+ show: false,
+ padding: {
+ left: 0,
+ right: 0
+ }
+ },
+ xaxis: {
+ labels: {
+ show: false
+ },
+ tooltip: {
+ enabled: false
+ },
+ axisBorder: {
+ show: false
+ },
+ axisTicks: {
+ show: false
+ }
+ }
+ });
+ }
+ }, {
+ key: "candlestick",
+ value: function candlestick() {
+ var _this = this;
+
+ return {
+ stroke: {
+ width: 1,
+ colors: ['#333']
+ },
+ fill: {
+ opacity: 1
+ },
+ dataLabels: {
+ enabled: false
+ },
+ tooltip: {
+ shared: true,
+ custom: function custom(_ref2) {
+ var seriesIndex = _ref2.seriesIndex,
+ dataPointIndex = _ref2.dataPointIndex,
+ w = _ref2.w;
+ return _this._getBoxTooltip(w, seriesIndex, dataPointIndex, ['Open', 'High', '', 'Low', 'Close'], 'candlestick');
+ }
+ },
+ states: {
+ active: {
+ filter: {
+ type: 'none'
+ }
+ }
+ },
+ xaxis: {
+ crosshairs: {
+ width: 1
+ }
+ }
+ };
+ }
+ }, {
+ key: "boxPlot",
+ value: function boxPlot() {
+ var _this2 = this;
+
+ return {
+ chart: {
+ animations: {
+ dynamicAnimation: {
+ enabled: false
+ }
+ }
+ },
+ stroke: {
+ width: 1,
+ colors: ['#24292e']
+ },
+ dataLabels: {
+ enabled: false
+ },
+ tooltip: {
+ shared: true,
+ custom: function custom(_ref3) {
+ var seriesIndex = _ref3.seriesIndex,
+ dataPointIndex = _ref3.dataPointIndex,
+ w = _ref3.w;
+ return _this2._getBoxTooltip(w, seriesIndex, dataPointIndex, ['Minimum', 'Q1', 'Median', 'Q3', 'Maximum'], 'boxPlot');
+ }
+ },
+ markers: {
+ size: 5,
+ strokeWidth: 1,
+ strokeColors: '#111'
+ },
+ xaxis: {
+ crosshairs: {
+ width: 1
+ }
+ }
+ };
+ }
+ }, {
+ key: "rangeBar",
+ value: function rangeBar() {
+ var handleTimelineTooltip = function handleTimelineTooltip(opts) {
+ var _getRangeValues = getRangeValues(_objectSpread2(_objectSpread2({}, opts), {}, {
+ isTimeline: true
+ })),
+ color = _getRangeValues.color,
+ seriesName = _getRangeValues.seriesName,
+ ylabel = _getRangeValues.ylabel,
+ startVal = _getRangeValues.startVal,
+ endVal = _getRangeValues.endVal;
+
+ return buildRangeTooltipHTML(_objectSpread2(_objectSpread2({}, opts), {}, {
+ color: color,
+ seriesName: seriesName,
+ ylabel: ylabel,
+ start: startVal,
+ end: endVal
+ }));
+ };
+
+ var handleRangeColumnTooltip = function handleRangeColumnTooltip(opts) {
+ var _getRangeValues2 = getRangeValues(opts),
+ color = _getRangeValues2.color,
+ seriesName = _getRangeValues2.seriesName,
+ ylabel = _getRangeValues2.ylabel,
+ start = _getRangeValues2.start,
+ end = _getRangeValues2.end;
+
+ return buildRangeTooltipHTML(_objectSpread2(_objectSpread2({}, opts), {}, {
+ color: color,
+ seriesName: seriesName,
+ ylabel: ylabel,
+ start: start,
+ end: end
+ }));
+ };
+
+ return {
+ chart: {
+ animations: {
+ animateGradually: false
+ }
+ },
+ stroke: {
+ width: 0,
+ lineCap: 'square'
+ },
+ plotOptions: {
+ bar: {
+ borderRadius: 0,
+ dataLabels: {
+ position: 'center'
+ }
+ }
+ },
+ dataLabels: {
+ enabled: false,
+ formatter: function formatter(val, _ref4) {
+ _ref4.ctx;
+ var seriesIndex = _ref4.seriesIndex,
+ dataPointIndex = _ref4.dataPointIndex,
+ w = _ref4.w;
+
+ var getVal = function getVal() {
+ var start = w.globals.seriesRangeStart[seriesIndex][dataPointIndex];
+ var end = w.globals.seriesRangeEnd[seriesIndex][dataPointIndex];
+ return end - start;
+ };
+
+ if (w.globals.comboCharts) {
+ if (w.config.series[seriesIndex].type === 'rangeBar' || w.config.series[seriesIndex].type === 'rangeArea') {
+ return getVal();
+ } else {
+ return val;
+ }
+ } else {
+ return getVal();
+ }
+ },
+ background: {
+ enabled: false
+ },
+ style: {
+ colors: ['#fff']
+ }
+ },
+ markers: {
+ size: 10
+ },
+ tooltip: {
+ shared: false,
+ followCursor: true,
+ custom: function custom(opts) {
+ if (opts.w.config.plotOptions && opts.w.config.plotOptions.bar && opts.w.config.plotOptions.bar.horizontal) {
+ return handleTimelineTooltip(opts);
+ } else {
+ return handleRangeColumnTooltip(opts);
+ }
+ }
+ },
+ xaxis: {
+ tickPlacement: 'between',
+ tooltip: {
+ enabled: false
+ },
+ crosshairs: {
+ stroke: {
+ width: 0
+ }
+ }
+ }
+ };
+ }
+ }, {
+ key: "dumbbell",
+ value: function dumbbell(opts) {
+ var _opts$plotOptions$bar, _opts$plotOptions$bar2;
+
+ if (!((_opts$plotOptions$bar = opts.plotOptions.bar) !== null && _opts$plotOptions$bar !== void 0 && _opts$plotOptions$bar.barHeight)) {
+ opts.plotOptions.bar.barHeight = 2;
+ }
+
+ if (!((_opts$plotOptions$bar2 = opts.plotOptions.bar) !== null && _opts$plotOptions$bar2 !== void 0 && _opts$plotOptions$bar2.columnWidth)) {
+ opts.plotOptions.bar.columnWidth = 2;
+ }
+
+ return opts;
+ }
+ }, {
+ key: "area",
+ value: function area() {
+ return {
+ stroke: {
+ width: 4,
+ fill: {
+ type: 'solid',
+ gradient: {
+ inverseColors: false,
+ shade: 'light',
+ type: 'vertical',
+ opacityFrom: 0.65,
+ opacityTo: 0.5,
+ stops: [0, 100, 100]
+ }
+ }
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ inverseColors: false,
+ shade: 'light',
+ type: 'vertical',
+ opacityFrom: 0.65,
+ opacityTo: 0.5,
+ stops: [0, 100, 100]
+ }
+ },
+ markers: {
+ size: 0,
+ hover: {
+ sizeOffset: 6
+ }
+ },
+ tooltip: {
+ followCursor: false
+ }
+ };
+ }
+ }, {
+ key: "rangeArea",
+ value: function rangeArea() {
+ var handleRangeAreaTooltip = function handleRangeAreaTooltip(opts) {
+ var _getRangeValues3 = getRangeValues(opts),
+ color = _getRangeValues3.color,
+ seriesName = _getRangeValues3.seriesName,
+ ylabel = _getRangeValues3.ylabel,
+ start = _getRangeValues3.start,
+ end = _getRangeValues3.end;
+
+ return buildRangeTooltipHTML(_objectSpread2(_objectSpread2({}, opts), {}, {
+ color: color,
+ seriesName: seriesName,
+ ylabel: ylabel,
+ start: start,
+ end: end
+ }));
+ };
+
+ return {
+ stroke: {
+ curve: 'straight',
+ width: 0
+ },
+ fill: {
+ type: 'solid',
+ opacity: 0.6
+ },
+ markers: {
+ size: 0
+ },
+ states: {
+ hover: {
+ filter: {
+ type: 'none'
+ }
+ },
+ active: {
+ filter: {
+ type: 'none'
+ }
+ }
+ },
+ tooltip: {
+ intersect: false,
+ shared: true,
+ followCursor: true,
+ custom: function custom(opts) {
+ return handleRangeAreaTooltip(opts);
+ }
+ }
+ };
+ }
+ }, {
+ key: "brush",
+ value: function brush(defaults) {
+ var ret = {
+ chart: {
+ toolbar: {
+ autoSelected: 'selection',
+ show: false
+ },
+ zoom: {
+ enabled: false
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: 1
+ },
+ tooltip: {
+ enabled: false
+ },
+ xaxis: {
+ tooltip: {
+ enabled: false
+ }
+ }
+ };
+ return Utils$1.extend(defaults, ret);
+ }
+ }, {
+ key: "stacked100",
+ value: function stacked100(opts) {
+ opts.dataLabels = opts.dataLabels || {};
+ opts.dataLabels.formatter = opts.dataLabels.formatter || undefined;
+ var existingDataLabelFormatter = opts.dataLabels.formatter;
+ opts.yaxis.forEach(function (yaxe, index) {
+ opts.yaxis[index].min = 0;
+ opts.yaxis[index].max = 100;
+ });
+ var isBar = opts.chart.type === 'bar';
+
+ if (isBar) {
+ opts.dataLabels.formatter = existingDataLabelFormatter || function (val) {
+ if (typeof val === 'number') {
+ return val ? val.toFixed(0) + '%' : val;
+ }
+
+ return val;
+ };
+ }
+
+ return opts;
+ }
+ }, {
+ key: "stackedBars",
+ value: function stackedBars() {
+ var barDefaults = this.bar();
+ return _objectSpread2(_objectSpread2({}, barDefaults), {}, {
+ plotOptions: _objectSpread2(_objectSpread2({}, barDefaults.plotOptions), {}, {
+ bar: _objectSpread2(_objectSpread2({}, barDefaults.plotOptions.bar), {}, {
+ borderRadiusApplication: 'end',
+ borderRadiusWhenStacked: 'last'
+ })
+ })
+ });
+ } // This function removes the left and right spacing in chart for line/area/scatter if xaxis type = category for those charts by converting xaxis = numeric. Numeric/Datetime xaxis prevents the unnecessary spacing in the left/right of the chart area
+
+ }, {
+ key: "convertCatToNumeric",
+ value: function convertCatToNumeric(opts) {
+ opts.xaxis.convertedCatToNumeric = true;
+ return opts;
+ }
+ }, {
+ key: "convertCatToNumericXaxis",
+ value: function convertCatToNumericXaxis(opts, ctx, cats) {
+ opts.xaxis.type = 'numeric';
+ opts.xaxis.labels = opts.xaxis.labels || {};
+
+ opts.xaxis.labels.formatter = opts.xaxis.labels.formatter || function (val) {
+ return Utils$1.isNumber(val) ? Math.floor(val) : val;
+ };
+
+ var defaultFormatter = opts.xaxis.labels.formatter;
+ var labels = opts.xaxis.categories && opts.xaxis.categories.length ? opts.xaxis.categories : opts.labels;
+
+ if (cats && cats.length) {
+ labels = cats.map(function (c) {
+ return Array.isArray(c) ? c : String(c);
+ });
+ }
+
+ if (labels && labels.length) {
+ opts.xaxis.labels.formatter = function (val) {
+ return Utils$1.isNumber(val) ? defaultFormatter(labels[Math.floor(val) - 1]) : defaultFormatter(val);
+ };
+ }
+
+ opts.xaxis.categories = [];
+ opts.labels = [];
+ opts.xaxis.tickAmount = opts.xaxis.tickAmount || 'dataPoints';
+ return opts;
+ }
+ }, {
+ key: "bubble",
+ value: function bubble() {
+ return {
+ dataLabels: {
+ style: {
+ colors: ['#fff']
+ }
+ },
+ tooltip: {
+ shared: false,
+ intersect: true
+ },
+ xaxis: {
+ crosshairs: {
+ width: 0
+ }
+ },
+ fill: {
+ type: 'solid',
+ gradient: {
+ shade: 'light',
+ inverse: true,
+ shadeIntensity: 0.55,
+ opacityFrom: 0.4,
+ opacityTo: 0.8
+ }
+ }
+ };
+ }
+ }, {
+ key: "scatter",
+ value: function scatter() {
+ return {
+ dataLabels: {
+ enabled: false
+ },
+ tooltip: {
+ shared: false,
+ intersect: true
+ },
+ markers: {
+ size: 6,
+ strokeWidth: 1,
+ hover: {
+ sizeOffset: 2
+ }
+ }
+ };
+ }
+ }, {
+ key: "heatmap",
+ value: function heatmap() {
+ return {
+ chart: {
+ stacked: false
+ },
+ fill: {
+ opacity: 1
+ },
+ dataLabels: {
+ style: {
+ colors: ['#fff']
+ }
+ },
+ stroke: {
+ colors: ['#fff']
+ },
+ tooltip: {
+ followCursor: true,
+ marker: {
+ show: false
+ },
+ x: {
+ show: false
+ }
+ },
+ legend: {
+ position: 'top',
+ markers: {
+ shape: 'square',
+ size: 10,
+ offsetY: 2
+ }
+ },
+ grid: {
+ padding: {
+ right: 20
+ }
+ }
+ };
+ }
+ }, {
+ key: "treemap",
+ value: function treemap() {
+ return {
+ chart: {
+ zoom: {
+ enabled: false
+ }
+ },
+ dataLabels: {
+ style: {
+ fontSize: 14,
+ fontWeight: 600,
+ colors: ['#fff']
+ }
+ },
+ stroke: {
+ show: true,
+ width: 2,
+ colors: ['#fff']
+ },
+ legend: {
+ show: false
+ },
+ fill: {
+ gradient: {
+ stops: [0, 100]
+ }
+ },
+ tooltip: {
+ followCursor: true,
+ x: {
+ show: false
+ }
+ },
+ grid: {
+ padding: {
+ left: 0,
+ right: 0
+ }
+ },
+ xaxis: {
+ crosshairs: {
+ show: false
+ },
+ tooltip: {
+ enabled: false
+ }
+ }
+ };
+ }
+ }, {
+ key: "pie",
+ value: function pie() {
+ return {
+ chart: {
+ toolbar: {
+ show: false
+ }
+ },
+ plotOptions: {
+ pie: {
+ donut: {
+ labels: {
+ show: false
+ }
+ }
+ }
+ },
+ dataLabels: {
+ formatter: function formatter(val) {
+ return val.toFixed(1) + '%';
+ },
+ style: {
+ colors: ['#fff']
+ },
+ background: {
+ enabled: false
+ },
+ dropShadow: {
+ enabled: true
+ }
+ },
+ stroke: {
+ colors: ['#fff']
+ },
+ fill: {
+ opacity: 1,
+ gradient: {
+ shade: 'light',
+ stops: [0, 100]
+ }
+ },
+ tooltip: {
+ theme: 'dark',
+ fillSeriesColor: true
+ },
+ legend: {
+ position: 'right'
+ }
+ };
+ }
+ }, {
+ key: "donut",
+ value: function donut() {
+ return {
+ chart: {
+ toolbar: {
+ show: false
+ }
+ },
+ dataLabels: {
+ formatter: function formatter(val) {
+ return val.toFixed(1) + '%';
+ },
+ style: {
+ colors: ['#fff']
+ },
+ background: {
+ enabled: false
+ },
+ dropShadow: {
+ enabled: true
+ }
+ },
+ stroke: {
+ colors: ['#fff']
+ },
+ fill: {
+ opacity: 1,
+ gradient: {
+ shade: 'light',
+ shadeIntensity: 0.35,
+ stops: [80, 100],
+ opacityFrom: 1,
+ opacityTo: 1
+ }
+ },
+ tooltip: {
+ theme: 'dark',
+ fillSeriesColor: true
+ },
+ legend: {
+ position: 'right'
+ }
+ };
+ }
+ }, {
+ key: "polarArea",
+ value: function polarArea() {
+ return {
+ chart: {
+ toolbar: {
+ show: false
+ }
+ },
+ dataLabels: {
+ formatter: function formatter(val) {
+ return val.toFixed(1) + '%';
+ },
+ enabled: false
+ },
+ stroke: {
+ show: true,
+ width: 2
+ },
+ fill: {
+ opacity: 0.7
+ },
+ tooltip: {
+ theme: 'dark',
+ fillSeriesColor: true
+ },
+ legend: {
+ position: 'right'
+ }
+ };
+ }
+ }, {
+ key: "radar",
+ value: function radar() {
+ this.opts.yaxis[0].labels.offsetY = this.opts.yaxis[0].labels.offsetY ? this.opts.yaxis[0].labels.offsetY : 6;
+ return {
+ dataLabels: {
+ enabled: false,
+ style: {
+ fontSize: '11px'
+ }
+ },
+ stroke: {
+ width: 2
+ },
+ markers: {
+ size: 3,
+ strokeWidth: 1,
+ strokeOpacity: 1
+ },
+ fill: {
+ opacity: 0.2
+ },
+ tooltip: {
+ shared: false,
+ intersect: true,
+ followCursor: true
+ },
+ grid: {
+ show: false
+ },
+ xaxis: {
+ labels: {
+ formatter: function formatter(val) {
+ return val;
+ },
+ style: {
+ colors: ['#a8a8a8'],
+ fontSize: '11px'
+ }
+ },
+ tooltip: {
+ enabled: false
+ },
+ crosshairs: {
+ show: false
+ }
+ }
+ };
+ }
+ }, {
+ key: "radialBar",
+ value: function radialBar() {
+ return {
+ chart: {
+ animations: {
+ dynamicAnimation: {
+ enabled: true,
+ speed: 800
+ }
+ },
+ toolbar: {
+ show: false
+ }
+ },
+ fill: {
+ gradient: {
+ shade: 'dark',
+ shadeIntensity: 0.4,
+ inverseColors: false,
+ type: 'diagonal2',
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [70, 98, 100]
+ }
+ },
+ legend: {
+ show: false,
+ position: 'right'
+ },
+ tooltip: {
+ enabled: false,
+ fillSeriesColor: true
+ }
+ };
+ }
+ }, {
+ key: "_getBoxTooltip",
+ value: function _getBoxTooltip(w, seriesIndex, dataPointIndex, labels, chartType) {
+ var o = w.globals.seriesCandleO[seriesIndex][dataPointIndex];
+ var h = w.globals.seriesCandleH[seriesIndex][dataPointIndex];
+ var m = w.globals.seriesCandleM[seriesIndex][dataPointIndex];
+ var l = w.globals.seriesCandleL[seriesIndex][dataPointIndex];
+ var c = w.globals.seriesCandleC[seriesIndex][dataPointIndex];
+
+ if (w.config.series[seriesIndex].type && w.config.series[seriesIndex].type !== chartType) {
+ return "\n ".concat(w.config.series[seriesIndex].name ? w.config.series[seriesIndex].name : 'series-' + (seriesIndex + 1), ": ").concat(w.globals.series[seriesIndex][dataPointIndex], "\n
");
+ } else {
+ return "';
+ }
+ }
+ }]);
+
+ return Defaults;
+ }();
+
+ /**
+ * ApexCharts Config Class for extending user options with pre-defined ApexCharts config.
+ *
+ * @module Config
+ **/
+
+ var Config = /*#__PURE__*/function () {
+ function Config(opts) {
+ _classCallCheck(this, Config);
+
+ this.opts = opts;
+ }
+
+ _createClass(Config, [{
+ key: "init",
+ value: function init(_ref) {
+ var responsiveOverride = _ref.responsiveOverride;
+ var opts = this.opts;
+ var options = new Options();
+ var defaults = new Defaults(opts);
+ this.chartType = opts.chart.type;
+ opts = this.extendYAxis(opts);
+ opts = this.extendAnnotations(opts);
+ var config = options.init();
+ var newDefaults = {};
+
+ if (opts && _typeof(opts) === 'object') {
+ var _opts$plotOptions, _opts$plotOptions$bar, _opts$chart$brush, _opts$plotOptions2, _opts$plotOptions2$ba, _opts$chart$sparkline, _window$Apex$chart, _window$Apex$chart$sp;
+
+ var chartDefaults = {};
+ var chartTypes = ['line', 'area', 'bar', 'candlestick', 'boxPlot', 'rangeBar', 'rangeArea', 'bubble', 'scatter', 'heatmap', 'treemap', 'pie', 'polarArea', 'donut', 'radar', 'radialBar'];
+
+ if (chartTypes.indexOf(opts.chart.type) !== -1) {
+ chartDefaults = defaults[opts.chart.type]();
+ } else {
+ chartDefaults = defaults.line();
+ }
+
+ if ((_opts$plotOptions = opts.plotOptions) !== null && _opts$plotOptions !== void 0 && (_opts$plotOptions$bar = _opts$plotOptions.bar) !== null && _opts$plotOptions$bar !== void 0 && _opts$plotOptions$bar.isFunnel) {
+ chartDefaults = defaults.funnel();
+ }
+
+ if (opts.chart.stacked && opts.chart.type === 'bar') {
+ chartDefaults = defaults.stackedBars();
+ }
+
+ if ((_opts$chart$brush = opts.chart.brush) !== null && _opts$chart$brush !== void 0 && _opts$chart$brush.enabled) {
+ chartDefaults = defaults.brush(chartDefaults);
+ }
+
+ if (opts.chart.stacked && opts.chart.stackType === '100%') {
+ opts = defaults.stacked100(opts);
+ }
+
+ if ((_opts$plotOptions2 = opts.plotOptions) !== null && _opts$plotOptions2 !== void 0 && (_opts$plotOptions2$ba = _opts$plotOptions2.bar) !== null && _opts$plotOptions2$ba !== void 0 && _opts$plotOptions2$ba.isDumbbell) {
+ opts = defaults.dumbbell(opts);
+ } // If user has specified a dark theme, make the tooltip dark too
+
+
+ this.checkForDarkTheme(window.Apex); // check global window Apex options
+
+ this.checkForDarkTheme(opts); // check locally passed options
+
+ opts.xaxis = opts.xaxis || window.Apex.xaxis || {}; // an important boolean needs to be set here
+ // otherwise all the charts will have this flag set to true window.Apex.xaxis is set globally
+
+ if (!responsiveOverride) {
+ opts.xaxis.convertedCatToNumeric = false;
+ }
+
+ opts = this.checkForCatToNumericXAxis(this.chartType, chartDefaults, opts);
+
+ if ((_opts$chart$sparkline = opts.chart.sparkline) !== null && _opts$chart$sparkline !== void 0 && _opts$chart$sparkline.enabled || (_window$Apex$chart = window.Apex.chart) !== null && _window$Apex$chart !== void 0 && (_window$Apex$chart$sp = _window$Apex$chart.sparkline) !== null && _window$Apex$chart$sp !== void 0 && _window$Apex$chart$sp.enabled) {
+ chartDefaults = defaults.sparkline(chartDefaults);
+ }
+
+ newDefaults = Utils$1.extend(config, chartDefaults);
+ } // config should cascade in this fashion
+ // default-config < global-apex-variable-config < user-defined-config
+ // get GLOBALLY defined options and merge with the default config
+
+
+ var mergedWithDefaultConfig = Utils$1.extend(newDefaults, window.Apex); // get the merged config and extend with user defined config
+
+ config = Utils$1.extend(mergedWithDefaultConfig, opts); // some features are not supported. those mismatches should be handled
+
+ config = this.handleUserInputErrors(config);
+ return config;
+ }
+ }, {
+ key: "checkForCatToNumericXAxis",
+ value: function checkForCatToNumericXAxis(chartType, chartDefaults, opts) {
+ var _opts$plotOptions3, _opts$plotOptions3$ba;
+
+ var defaults = new Defaults(opts);
+ var isBarHorizontal = (chartType === 'bar' || chartType === 'boxPlot') && ((_opts$plotOptions3 = opts.plotOptions) === null || _opts$plotOptions3 === void 0 ? void 0 : (_opts$plotOptions3$ba = _opts$plotOptions3.bar) === null || _opts$plotOptions3$ba === void 0 ? void 0 : _opts$plotOptions3$ba.horizontal);
+ var unsupportedZoom = chartType === 'pie' || chartType === 'polarArea' || chartType === 'donut' || chartType === 'radar' || chartType === 'radialBar' || chartType === 'heatmap';
+ var notNumericXAxis = opts.xaxis.type !== 'datetime' && opts.xaxis.type !== 'numeric';
+ var tickPlacement = opts.xaxis.tickPlacement ? opts.xaxis.tickPlacement : chartDefaults.xaxis && chartDefaults.xaxis.tickPlacement;
+
+ if (!isBarHorizontal && !unsupportedZoom && notNumericXAxis && tickPlacement !== 'between') {
+ opts = defaults.convertCatToNumeric(opts);
+ }
+
+ return opts;
+ }
+ }, {
+ key: "extendYAxis",
+ value: function extendYAxis(opts, w) {
+ var options = new Options();
+
+ if (typeof opts.yaxis === 'undefined' || !opts.yaxis || Array.isArray(opts.yaxis) && opts.yaxis.length === 0) {
+ opts.yaxis = {};
+ } // extend global yaxis config (only if object is provided / not an array)
+
+
+ if (opts.yaxis.constructor !== Array && window.Apex.yaxis && window.Apex.yaxis.constructor !== Array) {
+ opts.yaxis = Utils$1.extend(opts.yaxis, window.Apex.yaxis);
+ } // as we can't extend nested object's array with extend, we need to do it first
+ // user can provide either an array or object in yaxis config
+
+
+ if (opts.yaxis.constructor !== Array) {
+ // convert the yaxis to array if user supplied object
+ opts.yaxis = [Utils$1.extend(options.yAxis, opts.yaxis)];
+ } else {
+ opts.yaxis = Utils$1.extendArray(opts.yaxis, options.yAxis);
+ }
+
+ var isLogY = false;
+ opts.yaxis.forEach(function (y) {
+ if (y.logarithmic) {
+ isLogY = true;
+ }
+ });
+ var series = opts.series;
+
+ if (w && !series) {
+ series = w.config.series;
+ } // A logarithmic chart works correctly when each series has a corresponding y-axis
+ // If this is not the case, we manually create yaxis for multi-series log chart
+
+
+ if (isLogY && series.length !== opts.yaxis.length && series.length) {
+ opts.yaxis = series.map(function (s, i) {
+ if (!s.name) {
+ series[i].name = "series-".concat(i + 1);
+ }
+
+ if (opts.yaxis[i]) {
+ opts.yaxis[i].seriesName = series[i].name;
+ return opts.yaxis[i];
+ } else {
+ var newYaxis = Utils$1.extend(options.yAxis, opts.yaxis[0]);
+ newYaxis.show = false;
+ return newYaxis;
+ }
+ });
+ }
+
+ if (isLogY && series.length > 1 && series.length !== opts.yaxis.length) {
+ console.warn('A multi-series logarithmic chart should have equal number of series and y-axes');
+ }
+
+ return opts;
+ } // annotations also accepts array, so we need to extend them manually
+
+ }, {
+ key: "extendAnnotations",
+ value: function extendAnnotations(opts) {
+ if (typeof opts.annotations === 'undefined') {
+ opts.annotations = {};
+ opts.annotations.yaxis = [];
+ opts.annotations.xaxis = [];
+ opts.annotations.points = [];
+ }
+
+ opts = this.extendYAxisAnnotations(opts);
+ opts = this.extendXAxisAnnotations(opts);
+ opts = this.extendPointAnnotations(opts);
+ return opts;
+ }
+ }, {
+ key: "extendYAxisAnnotations",
+ value: function extendYAxisAnnotations(opts) {
+ var options = new Options();
+ opts.annotations.yaxis = Utils$1.extendArray(typeof opts.annotations.yaxis !== 'undefined' ? opts.annotations.yaxis : [], options.yAxisAnnotation);
+ return opts;
+ }
+ }, {
+ key: "extendXAxisAnnotations",
+ value: function extendXAxisAnnotations(opts) {
+ var options = new Options();
+ opts.annotations.xaxis = Utils$1.extendArray(typeof opts.annotations.xaxis !== 'undefined' ? opts.annotations.xaxis : [], options.xAxisAnnotation);
+ return opts;
+ }
+ }, {
+ key: "extendPointAnnotations",
+ value: function extendPointAnnotations(opts) {
+ var options = new Options();
+ opts.annotations.points = Utils$1.extendArray(typeof opts.annotations.points !== 'undefined' ? opts.annotations.points : [], options.pointAnnotation);
+ return opts;
+ }
+ }, {
+ key: "checkForDarkTheme",
+ value: function checkForDarkTheme(opts) {
+ if (opts.theme && opts.theme.mode === 'dark') {
+ if (!opts.tooltip) {
+ opts.tooltip = {};
+ }
+
+ if (opts.tooltip.theme !== 'light') {
+ opts.tooltip.theme = 'dark';
+ }
+
+ if (!opts.chart.foreColor) {
+ opts.chart.foreColor = '#f6f7f8';
+ }
+
+ if (!opts.chart.background) {
+ opts.chart.background = '#424242';
+ }
+
+ if (!opts.theme.palette) {
+ opts.theme.palette = 'palette4';
+ }
+ }
+ }
+ }, {
+ key: "handleUserInputErrors",
+ value: function handleUserInputErrors(opts) {
+ var config = opts; // conflicting tooltip option. intersect makes sure to focus on 1 point at a time. Shared cannot be used along with it
+
+ if (config.tooltip.shared && config.tooltip.intersect) {
+ throw new Error('tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.');
+ }
+
+ if (config.chart.type === 'bar' && config.plotOptions.bar.horizontal) {
+ // No multiple yaxis for bars
+ if (config.yaxis.length > 1) {
+ throw new Error('Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false');
+ } // if yaxis is reversed in horizontal bar chart, you should draw the y-axis on right side
+
+
+ if (config.yaxis[0].reversed) {
+ config.yaxis[0].opposite = true;
+ }
+
+ config.xaxis.tooltip.enabled = false; // no xaxis tooltip for horizontal bar
+
+ config.yaxis[0].tooltip.enabled = false; // no xaxis tooltip for horizontal bar
+
+ config.chart.zoom.enabled = false; // no zooming for horz bars
+ }
+
+ if (config.chart.type === 'bar' || config.chart.type === 'rangeBar') {
+ if (config.tooltip.shared) {
+ if (config.xaxis.crosshairs.width === 'barWidth' && config.series.length > 1) {
+ config.xaxis.crosshairs.width = 'tickWidth';
+ }
+ }
+ }
+
+ if (config.chart.type === 'candlestick' || config.chart.type === 'boxPlot') {
+ if (config.yaxis[0].reversed) {
+ console.warn("Reversed y-axis in ".concat(config.chart.type, " chart is not supported."));
+ config.yaxis[0].reversed = false;
+ }
+ }
+
+ return config;
+ }
+ }]);
+
+ return Config;
+ }();
+
+ var Globals = /*#__PURE__*/function () {
+ function Globals() {
+ _classCallCheck(this, Globals);
+ }
+
+ _createClass(Globals, [{
+ key: "initGlobalVars",
+ value: function initGlobalVars(gl) {
+ gl.series = []; // the MAIN series array (y values)
+
+ gl.seriesCandleO = [];
+ gl.seriesCandleH = [];
+ gl.seriesCandleM = [];
+ gl.seriesCandleL = [];
+ gl.seriesCandleC = [];
+ gl.seriesRangeStart = [];
+ gl.seriesRangeEnd = [];
+ gl.seriesRange = [];
+ gl.seriesPercent = [];
+ gl.seriesGoals = [];
+ gl.seriesX = [];
+ gl.seriesZ = [];
+ gl.seriesNames = [];
+ gl.seriesTotals = [];
+ gl.seriesLog = [];
+ gl.seriesColors = [];
+ gl.stackedSeriesTotals = [];
+ gl.seriesXvalues = []; // we will need this in tooltip (it's x position)
+ // when we will have unequal x values, we will need
+ // some way to get x value depending on mouse pointer
+
+ gl.seriesYvalues = []; // we will need this when deciding which series
+ // user hovered on
+
+ gl.labels = [];
+ gl.hasXaxisGroups = false;
+ gl.groups = [];
+ gl.hasSeriesGroups = false;
+ gl.seriesGroups = [];
+ gl.categoryLabels = [];
+ gl.timescaleLabels = [];
+ gl.noLabelsProvided = false;
+ gl.resizeTimer = null;
+ gl.selectionResizeTimer = null;
+ gl.delayedElements = [];
+ gl.pointsArray = [];
+ gl.dataLabelsRects = [];
+ gl.isXNumeric = false;
+ gl.skipLastTimelinelabel = false;
+ gl.skipFirstTimelinelabel = false;
+ gl.isDataXYZ = false;
+ gl.isMultiLineX = false;
+ gl.isMultipleYAxis = false;
+ gl.maxY = -Number.MAX_VALUE;
+ gl.minY = Number.MIN_VALUE;
+ gl.minYArr = [];
+ gl.maxYArr = [];
+ gl.maxX = -Number.MAX_VALUE;
+ gl.minX = Number.MAX_VALUE;
+ gl.initialMaxX = -Number.MAX_VALUE;
+ gl.initialMinX = Number.MAX_VALUE;
+ gl.maxDate = 0;
+ gl.minDate = Number.MAX_VALUE;
+ gl.minZ = Number.MAX_VALUE;
+ gl.maxZ = -Number.MAX_VALUE;
+ gl.minXDiff = Number.MAX_VALUE;
+ gl.yAxisScale = [];
+ gl.xAxisScale = null;
+ gl.xAxisTicksPositions = [];
+ gl.yLabelsCoords = [];
+ gl.yTitleCoords = [];
+ gl.barPadForNumericAxis = 0;
+ gl.padHorizontal = 0;
+ gl.xRange = 0;
+ gl.yRange = [];
+ gl.zRange = 0;
+ gl.dataPoints = 0;
+ gl.xTickAmount = 0;
+ gl.multiAxisTickAmount = 0;
+ }
+ }, {
+ key: "globalVars",
+ value: function globalVars(config) {
+ return {
+ chartID: null,
+ // chart ID - apexcharts-cuid
+ cuid: null,
+ // chart ID - random numbers excluding "apexcharts" part
+ events: {
+ beforeMount: [],
+ mounted: [],
+ updated: [],
+ clicked: [],
+ selection: [],
+ dataPointSelection: [],
+ zoomed: [],
+ scrolled: []
+ },
+ colors: [],
+ clientX: null,
+ clientY: null,
+ fill: {
+ colors: []
+ },
+ stroke: {
+ colors: []
+ },
+ dataLabels: {
+ style: {
+ colors: []
+ }
+ },
+ radarPolygons: {
+ fill: {
+ colors: []
+ }
+ },
+ markers: {
+ colors: [],
+ size: config.markers.size,
+ largestSize: 0
+ },
+ animationEnded: false,
+ isTouchDevice: 'ontouchstart' in window || navigator.msMaxTouchPoints,
+ isDirty: false,
+ // chart has been updated after the initial render. This is different than dataChanged property. isDirty means user manually called some method to update
+ isExecCalled: false,
+ // whether user updated the chart through the exec method
+ initialConfig: null,
+ // we will store the first config user has set to go back when user finishes interactions like zooming and come out of it
+ initialSeries: [],
+ lastXAxis: [],
+ lastYAxis: [],
+ columnSeries: null,
+ labels: [],
+ // store the text to draw on x axis
+ // Don't mutate the labels, many things including tooltips depends on it!
+ timescaleLabels: [],
+ // store the timescaleLabels Labels in another variable
+ noLabelsProvided: false,
+ // if user didn't provide any categories/labels or x values, fallback to 1,2,3,4...
+ allSeriesCollapsed: false,
+ collapsedSeries: [],
+ // when user collapses a series, it goes into this array
+ collapsedSeriesIndices: [],
+ // this stores the index of the collapsedSeries instead of whole object for quick access
+ ancillaryCollapsedSeries: [],
+ // when user collapses an "alwaysVisible" series, it goes into this array
+ ancillaryCollapsedSeriesIndices: [],
+ // this stores the index of the ancillaryCollapsedSeries whose y-axis is always visible
+ risingSeries: [],
+ // when user re-opens a collapsed series, it goes here
+ dataFormatXNumeric: false,
+ // boolean value to indicate user has passed numeric x values
+ capturedSeriesIndex: -1,
+ capturedDataPointIndex: -1,
+ selectedDataPoints: [],
+ goldenPadding: 35,
+ // this value is used at a lot of places for spacing purpose
+ invalidLogScale: false,
+ // if a user enabled log scale but the data provided is not valid to generate a log scale, turn on this flag
+ ignoreYAxisIndexes: [],
+ // when series are being collapsed in multiple y axes, ignore certain index
+ maxValsInArrayIndex: 0,
+ radialSize: 0,
+ selection: undefined,
+ zoomEnabled: config.chart.toolbar.autoSelected === 'zoom' && config.chart.toolbar.tools.zoom && config.chart.zoom.enabled,
+ panEnabled: config.chart.toolbar.autoSelected === 'pan' && config.chart.toolbar.tools.pan,
+ selectionEnabled: config.chart.toolbar.autoSelected === 'selection' && config.chart.toolbar.tools.selection,
+ yaxis: null,
+ mousedown: false,
+ lastClientPosition: {},
+ // don't reset this variable this the chart is destroyed. It is used to detect right or left mousemove in panning
+ visibleXRange: undefined,
+ yValueDecimal: 0,
+ // are there floating numbers in the series. If yes, this represent the len of the decimals
+ total: 0,
+ SVGNS: 'http://www.w3.org/2000/svg',
+ // svg namespace
+ svgWidth: 0,
+ // the whole svg width
+ svgHeight: 0,
+ // the whole svg height
+ noData: false,
+ // whether there is any data to display or not
+ locale: {},
+ // the current locale values will be preserved here for global access
+ dom: {},
+ // for storing all dom nodes in this particular property
+ memory: {
+ methodsToExec: []
+ },
+ shouldAnimate: true,
+ skipLastTimelinelabel: false,
+ // when last label is cropped, skip drawing it
+ skipFirstTimelinelabel: false,
+ // when first label is cropped, skip drawing it
+ delayedElements: [],
+ // element which appear after animation has finished
+ axisCharts: true,
+ // chart type = line or area or bar
+ // (refer them also as plot charts in the code)
+ isDataXYZ: false,
+ // bool: data was provided in a {[x,y,z]} pattern
+ resized: false,
+ // bool: user has resized
+ resizeTimer: null,
+ // timeout function to make a small delay before
+ // drawing when user resized
+ comboCharts: false,
+ // bool: whether it's a combination of line/column
+ dataChanged: false,
+ // bool: has data changed dynamically
+ previousPaths: [],
+ // array: when data is changed, it will animate from
+ // previous paths
+ allSeriesHasEqualX: true,
+ pointsArray: [],
+ // store the points positions here to draw later on hover
+ // format is - [[x,y],[x,y]... [x,y]]
+ dataLabelsRects: [],
+ // store the positions of datalabels to prevent collision
+ lastDrawnDataLabelsIndexes: [],
+ hasNullValues: false,
+ // bool: whether series contains null values
+ easing: null,
+ // function: animation effect to apply
+ zoomed: false,
+ // whether user has zoomed or not
+ gridWidth: 0,
+ // drawable width of actual graphs (series paths)
+ gridHeight: 0,
+ // drawable height of actual graphs (series paths)
+ rotateXLabels: false,
+ defaultLabels: false,
+ xLabelFormatter: undefined,
+ // formatter for x axis labels
+ yLabelFormatters: [],
+ xaxisTooltipFormatter: undefined,
+ // formatter for x axis tooltip
+ ttKeyFormatter: undefined,
+ ttVal: undefined,
+ ttZFormatter: undefined,
+ LINE_HEIGHT_RATIO: 1.618,
+ xAxisLabelsHeight: 0,
+ xAxisGroupLabelsHeight: 0,
+ xAxisLabelsWidth: 0,
+ yAxisLabelsWidth: 0,
+ scaleX: 1,
+ scaleY: 1,
+ translateX: 0,
+ translateY: 0,
+ translateYAxisX: [],
+ yAxisWidths: [],
+ translateXAxisY: 0,
+ translateXAxisX: 0,
+ tooltip: null,
+ // Rules for niceScaleAllowedMagMsd:
+ // 1) An array of two arrays only ([[],[]]):
+ // * array[0][]: influences labelling of data series that contain only integers
+ // - must contain only integers (or expect ugly ticks)
+ // * array[1][]: influences labelling of data series that contain at least one float
+ // - may contain floats
+ // * both arrays:
+ // - each array[][i] ideally satisfy: 10 mod array[][i] == 0 (or expect ugly ticks)
+ // - to avoid clipping data point keep each array[][i] >= i
+ // 2) each array[i][] contains 11 values, for all possible index values 0..10.
+ // array[][0] should not be needed (not proven) but ensures non-zero is returned.
+ //
+ // Users can effectively force their preferred "magMsd" through stepSize and
+ // forceNiceScale. With forceNiceScale: true, stepSize becomes normalizable to the
+ // axis's min..max range, which allows users to set stepSize to an integer 1..10, for
+ // example, stepSize: 3. This value will be preferred to the value determined through
+ // this array. The range-normalized value is checked for consistency with other
+ // user defined options and will be ignored if inconsistent.
+ niceScaleAllowedMagMsd: [[1, 1, 2, 5, 5, 5, 10, 10, 10, 10, 10], [1, 1, 2, 5, 5, 5, 10, 10, 10, 10, 10]],
+ // Default ticks based on SVG size. These values have high numbers
+ // of divisors. The array is indexed using a calculated maxTicks value
+ // divided by 2 simply to halve the array size. See Scales.niceScale().
+ niceScaleDefaultTicks: [1, 2, 4, 4, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 24],
+ seriesYAxisMap: [],
+ // Given yAxis index, return all series indices belonging to it. Multiple series can be referenced to each yAxis.
+ seriesYAxisReverseMap: [] // Given a Series index, return its yAxis index.
+
+ };
+ }
+ }, {
+ key: "init",
+ value: function init(config) {
+ var globals = this.globalVars(config);
+ this.initGlobalVars(globals);
+ globals.initialConfig = Utils$1.extend({}, config);
+ globals.initialSeries = Utils$1.clone(config.series);
+ globals.lastXAxis = Utils$1.clone(globals.initialConfig.xaxis);
+ globals.lastYAxis = Utils$1.clone(globals.initialConfig.yaxis);
+ return globals;
+ }
+ }]);
+
+ return Globals;
+ }();
+
+ /**
+ * ApexCharts Base Class for extending user options with pre-defined ApexCharts config.
+ *
+ * @module Base
+ **/
+
+ var Base = /*#__PURE__*/function () {
+ function Base(opts) {
+ _classCallCheck(this, Base);
+
+ this.opts = opts;
+ }
+
+ _createClass(Base, [{
+ key: "init",
+ value: function init() {
+ var config = new Config(this.opts).init({
+ responsiveOverride: false
+ });
+ var globals = new Globals().init(config);
+ var w = {
+ config: config,
+ globals: globals
+ };
+ return w;
+ }
+ }]);
+
+ return Base;
+ }();
+
+ /**
+ * ApexCharts Fill Class for setting fill options of the paths.
+ *
+ * @module Fill
+ **/
+
+ var Fill = /*#__PURE__*/function () {
+ function Fill(ctx) {
+ _classCallCheck(this, Fill);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.opts = null;
+ this.seriesIndex = 0;
+ }
+
+ _createClass(Fill, [{
+ key: "clippedImgArea",
+ value: function clippedImgArea(params) {
+ var w = this.w;
+ var cnf = w.config;
+ var svgW = parseInt(w.globals.gridWidth, 10);
+ var svgH = parseInt(w.globals.gridHeight, 10);
+ var size = svgW > svgH ? svgW : svgH;
+ var fillImg = params.image;
+ var imgWidth = 0;
+ var imgHeight = 0;
+
+ if (typeof params.width === 'undefined' && typeof params.height === 'undefined') {
+ if (cnf.fill.image.width !== undefined && cnf.fill.image.height !== undefined) {
+ imgWidth = cnf.fill.image.width + 1;
+ imgHeight = cnf.fill.image.height;
+ } else {
+ imgWidth = size + 1;
+ imgHeight = size;
+ }
+ } else {
+ imgWidth = params.width;
+ imgHeight = params.height;
+ }
+
+ var elPattern = document.createElementNS(w.globals.SVGNS, 'pattern');
+ Graphics.setAttrs(elPattern, {
+ id: params.patternID,
+ patternUnits: params.patternUnits ? params.patternUnits : 'userSpaceOnUse',
+ width: imgWidth + 'px',
+ height: imgHeight + 'px'
+ });
+ var elImage = document.createElementNS(w.globals.SVGNS, 'image');
+ elPattern.appendChild(elImage);
+ elImage.setAttributeNS(window.SVG.xlink, 'href', fillImg);
+ Graphics.setAttrs(elImage, {
+ x: 0,
+ y: 0,
+ preserveAspectRatio: 'none',
+ width: imgWidth + 'px',
+ height: imgHeight + 'px'
+ });
+ elImage.style.opacity = params.opacity;
+ w.globals.dom.elDefs.node.appendChild(elPattern);
+ }
+ }, {
+ key: "getSeriesIndex",
+ value: function getSeriesIndex(opts) {
+ var w = this.w;
+ var cType = w.config.chart.type;
+
+ if ((cType === 'bar' || cType === 'rangeBar') && w.config.plotOptions.bar.distributed || cType === 'heatmap' || cType === 'treemap') {
+ this.seriesIndex = opts.seriesNumber;
+ } else {
+ this.seriesIndex = opts.seriesNumber % w.globals.series.length;
+ }
+
+ return this.seriesIndex;
+ }
+ }, {
+ key: "fillPath",
+ value: function fillPath(opts) {
+ var w = this.w;
+ this.opts = opts;
+ var cnf = this.w.config;
+ var pathFill;
+ var patternFill, gradientFill;
+ this.seriesIndex = this.getSeriesIndex(opts);
+ var fillColors = this.getFillColors();
+ var fillColor = fillColors[this.seriesIndex]; //override fillcolor if user inputted color with data
+
+ if (w.globals.seriesColors[this.seriesIndex] !== undefined) {
+ fillColor = w.globals.seriesColors[this.seriesIndex];
+ }
+
+ if (typeof fillColor === 'function') {
+ fillColor = fillColor({
+ seriesIndex: this.seriesIndex,
+ dataPointIndex: opts.dataPointIndex,
+ value: opts.value,
+ w: w
+ });
+ }
+
+ var fillType = opts.fillType ? opts.fillType : this.getFillType(this.seriesIndex);
+ var fillOpacity = Array.isArray(cnf.fill.opacity) ? cnf.fill.opacity[this.seriesIndex] : cnf.fill.opacity;
+
+ if (opts.color) {
+ fillColor = opts.color;
+ } // in case a color is undefined, fallback to white color to prevent runtime error
+
+
+ if (!fillColor) {
+ fillColor = '#fff';
+ console.warn('undefined color - ApexCharts');
+ }
+
+ var defaultColor = fillColor;
+
+ if (fillColor.indexOf('rgb') === -1) {
+ if (fillColor.length < 9) {
+ // if the hex contains alpha and is of 9 digit, skip the opacity
+ defaultColor = Utils$1.hexToRgba(fillColor, fillOpacity);
+ }
+ } else {
+ if (fillColor.indexOf('rgba') > -1) {
+ fillOpacity = Utils$1.getOpacityFromRGBA(fillColor);
+ }
+ }
+
+ if (opts.opacity) fillOpacity = opts.opacity;
+
+ if (fillType === 'pattern') {
+ patternFill = this.handlePatternFill({
+ fillConfig: opts.fillConfig,
+ patternFill: patternFill,
+ fillColor: fillColor,
+ fillOpacity: fillOpacity,
+ defaultColor: defaultColor
+ });
+ }
+
+ if (fillType === 'gradient') {
+ gradientFill = this.handleGradientFill({
+ fillConfig: opts.fillConfig,
+ fillColor: fillColor,
+ fillOpacity: fillOpacity,
+ i: this.seriesIndex
+ });
+ }
+
+ if (fillType === 'image') {
+ var imgSrc = cnf.fill.image.src;
+ var patternID = opts.patternID ? opts.patternID : '';
+ this.clippedImgArea({
+ opacity: fillOpacity,
+ image: Array.isArray(imgSrc) ? opts.seriesNumber < imgSrc.length ? imgSrc[opts.seriesNumber] : imgSrc[0] : imgSrc,
+ width: opts.width ? opts.width : undefined,
+ height: opts.height ? opts.height : undefined,
+ patternUnits: opts.patternUnits,
+ patternID: "pattern".concat(w.globals.cuid).concat(opts.seriesNumber + 1).concat(patternID)
+ });
+ pathFill = "url(#pattern".concat(w.globals.cuid).concat(opts.seriesNumber + 1).concat(patternID, ")");
+ } else if (fillType === 'gradient') {
+ pathFill = gradientFill;
+ } else if (fillType === 'pattern') {
+ pathFill = patternFill;
+ } else {
+ pathFill = defaultColor;
+ } // override pattern/gradient if opts.solid is true
+
+
+ if (opts.solid) {
+ pathFill = defaultColor;
+ }
+
+ return pathFill;
+ }
+ }, {
+ key: "getFillType",
+ value: function getFillType(seriesIndex) {
+ var w = this.w;
+
+ if (Array.isArray(w.config.fill.type)) {
+ return w.config.fill.type[seriesIndex];
+ } else {
+ return w.config.fill.type;
+ }
+ }
+ }, {
+ key: "getFillColors",
+ value: function getFillColors() {
+ var w = this.w;
+ var cnf = w.config;
+ var opts = this.opts;
+ var fillColors = [];
+
+ if (w.globals.comboCharts) {
+ if (w.config.series[this.seriesIndex].type === 'line') {
+ if (Array.isArray(w.globals.stroke.colors)) {
+ fillColors = w.globals.stroke.colors;
+ } else {
+ fillColors.push(w.globals.stroke.colors);
+ }
+ } else {
+ if (Array.isArray(w.globals.fill.colors)) {
+ fillColors = w.globals.fill.colors;
+ } else {
+ fillColors.push(w.globals.fill.colors);
+ }
+ }
+ } else {
+ if (cnf.chart.type === 'line') {
+ if (Array.isArray(w.globals.stroke.colors)) {
+ fillColors = w.globals.stroke.colors;
+ } else {
+ fillColors.push(w.globals.stroke.colors);
+ }
+ } else {
+ if (Array.isArray(w.globals.fill.colors)) {
+ fillColors = w.globals.fill.colors;
+ } else {
+ fillColors.push(w.globals.fill.colors);
+ }
+ }
+ } // colors passed in arguments
+
+
+ if (typeof opts.fillColors !== 'undefined') {
+ fillColors = [];
+
+ if (Array.isArray(opts.fillColors)) {
+ fillColors = opts.fillColors.slice();
+ } else {
+ fillColors.push(opts.fillColors);
+ }
+ }
+
+ return fillColors;
+ }
+ }, {
+ key: "handlePatternFill",
+ value: function handlePatternFill(_ref) {
+ var fillConfig = _ref.fillConfig,
+ patternFill = _ref.patternFill,
+ fillColor = _ref.fillColor,
+ fillOpacity = _ref.fillOpacity,
+ defaultColor = _ref.defaultColor;
+ var fillCnf = this.w.config.fill;
+
+ if (fillConfig) {
+ fillCnf = fillConfig;
+ }
+
+ var opts = this.opts;
+ var graphics = new Graphics(this.ctx);
+ var patternStrokeWidth = Array.isArray(fillCnf.pattern.strokeWidth) ? fillCnf.pattern.strokeWidth[this.seriesIndex] : fillCnf.pattern.strokeWidth;
+ var patternLineColor = fillColor;
+
+ if (Array.isArray(fillCnf.pattern.style)) {
+ if (typeof fillCnf.pattern.style[opts.seriesNumber] !== 'undefined') {
+ var pf = graphics.drawPattern(fillCnf.pattern.style[opts.seriesNumber], fillCnf.pattern.width, fillCnf.pattern.height, patternLineColor, patternStrokeWidth, fillOpacity);
+ patternFill = pf;
+ } else {
+ patternFill = defaultColor;
+ }
+ } else {
+ patternFill = graphics.drawPattern(fillCnf.pattern.style, fillCnf.pattern.width, fillCnf.pattern.height, patternLineColor, patternStrokeWidth, fillOpacity);
+ }
+
+ return patternFill;
+ }
+ }, {
+ key: "handleGradientFill",
+ value: function handleGradientFill(_ref2) {
+ var fillColor = _ref2.fillColor,
+ fillOpacity = _ref2.fillOpacity,
+ fillConfig = _ref2.fillConfig,
+ i = _ref2.i;
+ var fillCnf = this.w.config.fill;
+
+ if (fillConfig) {
+ fillCnf = _objectSpread2(_objectSpread2({}, fillCnf), fillConfig);
+ }
+
+ var opts = this.opts;
+ var graphics = new Graphics(this.ctx);
+ var utils = new Utils$1();
+ var type = fillCnf.gradient.type;
+ var gradientFrom = fillColor;
+ var gradientTo;
+ var opacityFrom = fillCnf.gradient.opacityFrom === undefined ? fillOpacity : Array.isArray(fillCnf.gradient.opacityFrom) ? fillCnf.gradient.opacityFrom[i] : fillCnf.gradient.opacityFrom;
+
+ if (gradientFrom.indexOf('rgba') > -1) {
+ opacityFrom = Utils$1.getOpacityFromRGBA(gradientFrom);
+ }
+
+ var opacityTo = fillCnf.gradient.opacityTo === undefined ? fillOpacity : Array.isArray(fillCnf.gradient.opacityTo) ? fillCnf.gradient.opacityTo[i] : fillCnf.gradient.opacityTo;
+
+ if (fillCnf.gradient.gradientToColors === undefined || fillCnf.gradient.gradientToColors.length === 0) {
+ if (fillCnf.gradient.shade === 'dark') {
+ gradientTo = utils.shadeColor(parseFloat(fillCnf.gradient.shadeIntensity) * -1, fillColor.indexOf('rgb') > -1 ? Utils$1.rgb2hex(fillColor) : fillColor);
+ } else {
+ gradientTo = utils.shadeColor(parseFloat(fillCnf.gradient.shadeIntensity), fillColor.indexOf('rgb') > -1 ? Utils$1.rgb2hex(fillColor) : fillColor);
+ }
+ } else {
+ if (fillCnf.gradient.gradientToColors[opts.seriesNumber]) {
+ var gToColor = fillCnf.gradient.gradientToColors[opts.seriesNumber];
+ gradientTo = gToColor;
+
+ if (gToColor.indexOf('rgba') > -1) {
+ opacityTo = Utils$1.getOpacityFromRGBA(gToColor);
+ }
+ } else {
+ gradientTo = fillColor;
+ }
+ }
+
+ if (fillCnf.gradient.gradientFrom) {
+ gradientFrom = fillCnf.gradient.gradientFrom;
+ }
+
+ if (fillCnf.gradient.gradientTo) {
+ gradientTo = fillCnf.gradient.gradientTo;
+ }
+
+ if (fillCnf.gradient.inverseColors) {
+ var t = gradientFrom;
+ gradientFrom = gradientTo;
+ gradientTo = t;
+ }
+
+ if (gradientFrom.indexOf('rgb') > -1) {
+ gradientFrom = Utils$1.rgb2hex(gradientFrom);
+ }
+
+ if (gradientTo.indexOf('rgb') > -1) {
+ gradientTo = Utils$1.rgb2hex(gradientTo);
+ }
+
+ return graphics.drawGradient(type, gradientFrom, gradientTo, opacityFrom, opacityTo, opts.size, fillCnf.gradient.stops, fillCnf.gradient.colorStops, i);
+ }
+ }]);
+
+ return Fill;
+ }();
+
+ /**
+ * ApexCharts Markers Class for drawing points on y values in axes charts.
+ *
+ * @module Markers
+ **/
+
+ var Markers = /*#__PURE__*/function () {
+ function Markers(ctx, opts) {
+ _classCallCheck(this, Markers);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(Markers, [{
+ key: "setGlobalMarkerSize",
+ value: function setGlobalMarkerSize() {
+ var w = this.w;
+ w.globals.markers.size = Array.isArray(w.config.markers.size) ? w.config.markers.size : [w.config.markers.size];
+
+ if (w.globals.markers.size.length > 0) {
+ if (w.globals.markers.size.length < w.globals.series.length + 1) {
+ for (var i = 0; i <= w.globals.series.length; i++) {
+ if (typeof w.globals.markers.size[i] === 'undefined') {
+ w.globals.markers.size.push(w.globals.markers.size[0]);
+ }
+ }
+ }
+ } else {
+ w.globals.markers.size = w.config.series.map(function (s) {
+ return w.config.markers.size;
+ });
+ }
+ }
+ }, {
+ key: "plotChartMarkers",
+ value: function plotChartMarkers(pointsPos, seriesIndex, j, pSize) {
+ var alwaysDrawMarker = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
+ var w = this.w;
+ var i = seriesIndex;
+ var p = pointsPos;
+ var elPointsWrap = null;
+ var graphics = new Graphics(this.ctx);
+ var point;
+ var hasDiscreteMarkers = w.config.markers.discrete && w.config.markers.discrete.length;
+
+ if (w.globals.markers.size[seriesIndex] > 0 || alwaysDrawMarker || hasDiscreteMarkers) {
+ elPointsWrap = graphics.group({
+ class: alwaysDrawMarker || hasDiscreteMarkers ? '' : 'apexcharts-series-markers'
+ });
+ elPointsWrap.attr('clip-path', "url(#gridRectMarkerMask".concat(w.globals.cuid, ")"));
+ }
+
+ if (Array.isArray(p.x)) {
+ for (var q = 0; q < p.x.length; q++) {
+ var dataPointIndex = j; // a small hack as we have 2 points for the first val to connect it
+
+ if (j === 1 && q === 0) dataPointIndex = 0;
+ if (j === 1 && q === 1) dataPointIndex = 1;
+ var PointClasses = 'apexcharts-marker';
+
+ if ((w.config.chart.type === 'line' || w.config.chart.type === 'area') && !w.globals.comboCharts && !w.config.tooltip.intersect) {
+ PointClasses += ' no-pointer-events';
+ }
+
+ var shouldMarkerDraw = Array.isArray(w.config.markers.size) ? w.globals.markers.size[seriesIndex] > 0 : w.config.markers.size > 0;
+
+ if (shouldMarkerDraw || alwaysDrawMarker || hasDiscreteMarkers) {
+ if (Utils$1.isNumber(p.y[q])) {
+ PointClasses += " w".concat(Utils$1.randomId());
+ } else {
+ PointClasses = 'apexcharts-nullpoint';
+ }
+
+ var opts = this.getMarkerConfig({
+ cssClass: PointClasses,
+ seriesIndex: seriesIndex,
+ dataPointIndex: dataPointIndex
+ });
+
+ if (w.config.series[i].data[dataPointIndex]) {
+ if (w.config.series[i].data[dataPointIndex].fillColor) {
+ opts.pointFillColor = w.config.series[i].data[dataPointIndex].fillColor;
+ }
+
+ if (w.config.series[i].data[dataPointIndex].strokeColor) {
+ opts.pointStrokeColor = w.config.series[i].data[dataPointIndex].strokeColor;
+ }
+ }
+
+ if (pSize) {
+ opts.pSize = pSize;
+ }
+
+ if (p.x[q] < 0 || p.x[q] > w.globals.gridWidth || p.y[q] < -w.globals.markers.largestSize || p.y[q] > w.globals.gridHeight + w.globals.markers.largestSize) {
+ opts.pSize = 0;
+ }
+
+ point = graphics.drawMarker(p.x[q], p.y[q], opts);
+ point.attr('rel', dataPointIndex);
+ point.attr('j', dataPointIndex);
+ point.attr('index', seriesIndex);
+ point.node.setAttribute('default-marker-size', opts.pSize);
+ var filters = new Filters(this.ctx);
+ filters.setSelectionFilter(point, seriesIndex, dataPointIndex);
+ this.addEvents(point);
+
+ if (elPointsWrap) {
+ elPointsWrap.add(point);
+ }
+ } else {
+ // dynamic array creation - multidimensional
+ if (typeof w.globals.pointsArray[seriesIndex] === 'undefined') w.globals.pointsArray[seriesIndex] = [];
+ w.globals.pointsArray[seriesIndex].push([p.x[q], p.y[q]]);
+ }
+ }
+ }
+
+ return elPointsWrap;
+ }
+ }, {
+ key: "getMarkerConfig",
+ value: function getMarkerConfig(_ref) {
+ var cssClass = _ref.cssClass,
+ seriesIndex = _ref.seriesIndex,
+ _ref$dataPointIndex = _ref.dataPointIndex,
+ dataPointIndex = _ref$dataPointIndex === void 0 ? null : _ref$dataPointIndex,
+ _ref$finishRadius = _ref.finishRadius,
+ finishRadius = _ref$finishRadius === void 0 ? null : _ref$finishRadius;
+ var w = this.w;
+ var pStyle = this.getMarkerStyle(seriesIndex);
+ var pSize = w.globals.markers.size[seriesIndex];
+ var m = w.config.markers; // discrete markers is an option where user can specify a particular marker with different shape, size and color
+
+ if (dataPointIndex !== null && m.discrete.length) {
+ m.discrete.map(function (marker) {
+ if (marker.seriesIndex === seriesIndex && marker.dataPointIndex === dataPointIndex) {
+ pStyle.pointStrokeColor = marker.strokeColor;
+ pStyle.pointFillColor = marker.fillColor;
+ pSize = marker.size;
+ pStyle.pointShape = marker.shape;
+ }
+ });
+ }
+
+ return {
+ pSize: finishRadius === null ? pSize : finishRadius,
+ pRadius: m.radius,
+ width: Array.isArray(m.width) ? m.width[seriesIndex] : m.width,
+ height: Array.isArray(m.height) ? m.height[seriesIndex] : m.height,
+ pointStrokeWidth: Array.isArray(m.strokeWidth) ? m.strokeWidth[seriesIndex] : m.strokeWidth,
+ pointStrokeColor: pStyle.pointStrokeColor,
+ pointFillColor: pStyle.pointFillColor,
+ shape: pStyle.pointShape || (Array.isArray(m.shape) ? m.shape[seriesIndex] : m.shape),
+ class: cssClass,
+ pointStrokeOpacity: Array.isArray(m.strokeOpacity) ? m.strokeOpacity[seriesIndex] : m.strokeOpacity,
+ pointStrokeDashArray: Array.isArray(m.strokeDashArray) ? m.strokeDashArray[seriesIndex] : m.strokeDashArray,
+ pointFillOpacity: Array.isArray(m.fillOpacity) ? m.fillOpacity[seriesIndex] : m.fillOpacity,
+ seriesIndex: seriesIndex
+ };
+ }
+ }, {
+ key: "addEvents",
+ value: function addEvents(circle) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ circle.node.addEventListener('mouseenter', graphics.pathMouseEnter.bind(this.ctx, circle));
+ circle.node.addEventListener('mouseleave', graphics.pathMouseLeave.bind(this.ctx, circle));
+ circle.node.addEventListener('mousedown', graphics.pathMouseDown.bind(this.ctx, circle));
+ circle.node.addEventListener('click', w.config.markers.onClick);
+ circle.node.addEventListener('dblclick', w.config.markers.onDblClick);
+ circle.node.addEventListener('touchstart', graphics.pathMouseDown.bind(this.ctx, circle), {
+ passive: true
+ });
+ }
+ }, {
+ key: "getMarkerStyle",
+ value: function getMarkerStyle(seriesIndex) {
+ var w = this.w;
+ var colors = w.globals.markers.colors;
+ var strokeColors = w.config.markers.strokeColor || w.config.markers.strokeColors;
+ var pointStrokeColor = Array.isArray(strokeColors) ? strokeColors[seriesIndex] : strokeColors;
+ var pointFillColor = Array.isArray(colors) ? colors[seriesIndex] : colors;
+ return {
+ pointStrokeColor: pointStrokeColor,
+ pointFillColor: pointFillColor
+ };
+ }
+ }]);
+
+ return Markers;
+ }();
+
+ /**
+ * ApexCharts Scatter Class.
+ * This Class also handles bubbles chart as currently there is no major difference in drawing them,
+ * @module Scatter
+ **/
+
+ var Scatter = /*#__PURE__*/function () {
+ function Scatter(ctx) {
+ _classCallCheck(this, Scatter);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.initialAnim = this.w.config.chart.animations.enabled;
+ this.dynamicAnim = this.initialAnim && this.w.config.chart.animations.dynamicAnimation.enabled;
+ }
+
+ _createClass(Scatter, [{
+ key: "draw",
+ value: function draw(elSeries, j, opts) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var realIndex = opts.realIndex;
+ var pointsPos = opts.pointsPos;
+ var zRatio = opts.zRatio;
+ var elPointsMain = opts.elParent;
+ var elPointsWrap = graphics.group({
+ class: "apexcharts-series-markers apexcharts-series-".concat(w.config.chart.type)
+ });
+ elPointsWrap.attr('clip-path', "url(#gridRectMarkerMask".concat(w.globals.cuid, ")"));
+
+ if (Array.isArray(pointsPos.x)) {
+ for (var q = 0; q < pointsPos.x.length; q++) {
+ var dataPointIndex = j + 1;
+ var shouldDraw = true; // a small hack as we have 2 points for the first val to connect it
+
+ if (j === 0 && q === 0) dataPointIndex = 0;
+ if (j === 0 && q === 1) dataPointIndex = 1;
+ var radius = 0;
+ var finishRadius = w.globals.markers.size[realIndex];
+
+ if (zRatio !== Infinity) {
+ // means we have a bubble
+ var bubble = w.config.plotOptions.bubble;
+ finishRadius = w.globals.seriesZ[realIndex][dataPointIndex];
+
+ if (bubble.zScaling) {
+ finishRadius /= zRatio;
+ }
+
+ if (bubble.minBubbleRadius && finishRadius < bubble.minBubbleRadius) {
+ finishRadius = bubble.minBubbleRadius;
+ }
+
+ if (bubble.maxBubbleRadius && finishRadius > bubble.maxBubbleRadius) {
+ finishRadius = bubble.maxBubbleRadius;
+ }
+ }
+
+ if (!w.config.chart.animations.enabled) {
+ radius = finishRadius;
+ }
+
+ var x = pointsPos.x[q];
+ var y = pointsPos.y[q];
+ radius = radius || 0;
+
+ if (y === null || typeof w.globals.series[realIndex][dataPointIndex] === 'undefined') {
+ shouldDraw = false;
+ }
+
+ if (shouldDraw) {
+ var point = this.drawPoint(x, y, radius, finishRadius, realIndex, dataPointIndex, j);
+ elPointsWrap.add(point);
+ }
+
+ elPointsMain.add(elPointsWrap);
+ }
+ }
+ }
+ }, {
+ key: "drawPoint",
+ value: function drawPoint(x, y, radius, finishRadius, realIndex, dataPointIndex, j) {
+ var w = this.w;
+ var i = realIndex;
+ var anim = new Animations(this.ctx);
+ var filters = new Filters(this.ctx);
+ var fill = new Fill(this.ctx);
+ var markers = new Markers(this.ctx);
+ var graphics = new Graphics(this.ctx);
+ var markerConfig = markers.getMarkerConfig({
+ cssClass: 'apexcharts-marker',
+ seriesIndex: i,
+ dataPointIndex: dataPointIndex,
+ finishRadius: w.config.chart.type === 'bubble' || w.globals.comboCharts && w.config.series[realIndex] && w.config.series[realIndex].type === 'bubble' ? finishRadius : null
+ });
+ finishRadius = markerConfig.pSize;
+ var pathFillCircle = fill.fillPath({
+ seriesNumber: realIndex,
+ dataPointIndex: dataPointIndex,
+ color: markerConfig.pointFillColor,
+ patternUnits: 'objectBoundingBox',
+ value: w.globals.series[realIndex][j]
+ });
+ var el;
+
+ if (markerConfig.shape === 'circle') {
+ el = graphics.drawCircle(radius);
+ } else if (markerConfig.shape === 'square' || markerConfig.shape === 'rect') {
+ el = graphics.drawRect(0, 0, markerConfig.width - markerConfig.pointStrokeWidth / 2, markerConfig.height - markerConfig.pointStrokeWidth / 2, markerConfig.pRadius);
+ }
+
+ if (w.config.series[i].data[dataPointIndex]) {
+ if (w.config.series[i].data[dataPointIndex].fillColor) {
+ pathFillCircle = w.config.series[i].data[dataPointIndex].fillColor;
+ }
+ }
+
+ el.attr({
+ x: x - markerConfig.width / 2 - markerConfig.pointStrokeWidth / 2,
+ y: y - markerConfig.height / 2 - markerConfig.pointStrokeWidth / 2,
+ cx: x,
+ cy: y,
+ fill: pathFillCircle,
+ 'fill-opacity': markerConfig.pointFillOpacity,
+ stroke: markerConfig.pointStrokeColor,
+ r: finishRadius,
+ 'stroke-width': markerConfig.pointStrokeWidth,
+ 'stroke-dasharray': markerConfig.pointStrokeDashArray,
+ 'stroke-opacity': markerConfig.pointStrokeOpacity
+ });
+
+ if (w.config.chart.dropShadow.enabled) {
+ var dropShadow = w.config.chart.dropShadow;
+ filters.dropShadow(el, dropShadow, realIndex);
+ }
+
+ if (this.initialAnim && !w.globals.dataChanged && !w.globals.resized) {
+ var speed = w.config.chart.animations.speed;
+ anim.animateMarker(el, 0, markerConfig.shape === 'circle' ? finishRadius : {
+ width: markerConfig.width,
+ height: markerConfig.height
+ }, speed, w.globals.easing, function () {
+ window.setTimeout(function () {
+ anim.animationCompleted(el);
+ }, 100);
+ });
+ } else {
+ w.globals.animationEnded = true;
+ }
+
+ if (w.globals.dataChanged && markerConfig.shape === 'circle') {
+ if (this.dynamicAnim) {
+ var _speed = w.config.chart.animations.dynamicAnimation.speed;
+ var prevX, prevY, prevR;
+ var prevPathJ = null;
+ prevPathJ = w.globals.previousPaths[realIndex] && w.globals.previousPaths[realIndex][j];
+
+ if (typeof prevPathJ !== 'undefined' && prevPathJ !== null) {
+ // series containing less elements will ignore these values and revert to 0
+ prevX = prevPathJ.x;
+ prevY = prevPathJ.y;
+ prevR = typeof prevPathJ.r !== 'undefined' ? prevPathJ.r : finishRadius;
+ }
+
+ for (var cs = 0; cs < w.globals.collapsedSeries.length; cs++) {
+ if (w.globals.collapsedSeries[cs].index === realIndex) {
+ _speed = 1;
+ finishRadius = 0;
+ }
+ }
+
+ if (x === 0 && y === 0) finishRadius = 0;
+ anim.animateCircle(el, {
+ cx: prevX,
+ cy: prevY,
+ r: prevR
+ }, {
+ cx: x,
+ cy: y,
+ r: finishRadius
+ }, _speed, w.globals.easing);
+ } else {
+ el.attr({
+ r: finishRadius
+ });
+ }
+ }
+
+ el.attr({
+ rel: dataPointIndex,
+ j: dataPointIndex,
+ index: realIndex,
+ 'default-marker-size': finishRadius
+ });
+ filters.setSelectionFilter(el, realIndex, dataPointIndex);
+ markers.addEvents(el);
+ el.node.classList.add('apexcharts-marker');
+ return el;
+ }
+ }, {
+ key: "centerTextInBubble",
+ value: function centerTextInBubble(y) {
+ var w = this.w;
+ y = y + parseInt(w.config.dataLabels.style.fontSize, 10) / 4;
+ return {
+ y: y
+ };
+ }
+ }]);
+
+ return Scatter;
+ }();
+
+ /**
+ * ApexCharts DataLabels Class for drawing dataLabels on Axes based Charts.
+ *
+ * @module DataLabels
+ **/
+
+ var DataLabels = /*#__PURE__*/function () {
+ function DataLabels(ctx) {
+ _classCallCheck(this, DataLabels);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ } // When there are many datalabels to be printed, and some of them overlaps each other in the same series, this method will take care of that
+ // Also, when datalabels exceeds the drawable area and get clipped off, we need to adjust and move some pixels to make them visible again
+
+
+ _createClass(DataLabels, [{
+ key: "dataLabelsCorrection",
+ value: function dataLabelsCorrection(x, y, val, i, dataPointIndex, alwaysDrawDataLabel, fontSize) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var drawnextLabel = false; //
+
+ var textRects = graphics.getTextRects(val, fontSize);
+ var width = textRects.width;
+ var height = textRects.height;
+ if (y < 0) y = 0;
+ if (y > w.globals.gridHeight + height) y = w.globals.gridHeight + height / 2; // first value in series, so push an empty array
+
+ if (typeof w.globals.dataLabelsRects[i] === 'undefined') w.globals.dataLabelsRects[i] = []; // then start pushing actual rects in that sub-array
+
+ w.globals.dataLabelsRects[i].push({
+ x: x,
+ y: y,
+ width: width,
+ height: height
+ });
+ var len = w.globals.dataLabelsRects[i].length - 2;
+ var lastDrawnIndex = typeof w.globals.lastDrawnDataLabelsIndexes[i] !== 'undefined' ? w.globals.lastDrawnDataLabelsIndexes[i][w.globals.lastDrawnDataLabelsIndexes[i].length - 1] : 0;
+
+ if (typeof w.globals.dataLabelsRects[i][len] !== 'undefined') {
+ var lastDataLabelRect = w.globals.dataLabelsRects[i][lastDrawnIndex];
+
+ if ( // next label forward and x not intersecting
+ x > lastDataLabelRect.x + lastDataLabelRect.width || y > lastDataLabelRect.y + lastDataLabelRect.height || y + height < lastDataLabelRect.y || x + width < lastDataLabelRect.x // next label is going to be drawn backwards
+ ) {
+ // the 2 indexes don't override, so OK to draw next label
+ drawnextLabel = true;
+ }
+ }
+
+ if (dataPointIndex === 0 || alwaysDrawDataLabel) {
+ drawnextLabel = true;
+ }
+
+ return {
+ x: x,
+ y: y,
+ textRects: textRects,
+ drawnextLabel: drawnextLabel
+ };
+ }
+ }, {
+ key: "drawDataLabel",
+ value: function drawDataLabel(_ref) {
+ var _this = this;
+
+ var type = _ref.type,
+ pos = _ref.pos,
+ i = _ref.i,
+ j = _ref.j,
+ isRangeStart = _ref.isRangeStart,
+ _ref$strokeWidth = _ref.strokeWidth,
+ strokeWidth = _ref$strokeWidth === void 0 ? 2 : _ref$strokeWidth;
+ // this method handles line, area, bubble, scatter charts as those charts contains markers/points which have pre-defined x/y positions
+ // all other charts like radar / bars / heatmaps will define their own drawDataLabel routine
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var dataLabelsConfig = w.config.dataLabels;
+ var x = 0;
+ var y = 0;
+ var dataPointIndex = j;
+ var elDataLabelsWrap = null;
+ var seriesCollapsed = w.globals.collapsedSeriesIndices.indexOf(i) !== -1;
+
+ if (seriesCollapsed || !dataLabelsConfig.enabled || !Array.isArray(pos.x)) {
+ return elDataLabelsWrap;
+ }
+
+ elDataLabelsWrap = graphics.group({
+ class: 'apexcharts-data-labels'
+ });
+
+ for (var q = 0; q < pos.x.length; q++) {
+ x = pos.x[q] + dataLabelsConfig.offsetX;
+ y = pos.y[q] + dataLabelsConfig.offsetY + strokeWidth;
+
+ if (!isNaN(x)) {
+ // a small hack as we have 2 points for the first val to connect it
+ if (j === 1 && q === 0) dataPointIndex = 0;
+ if (j === 1 && q === 1) dataPointIndex = 1;
+ var val = w.globals.series[i][dataPointIndex];
+
+ if (type === 'rangeArea') {
+ if (isRangeStart) {
+ val = w.globals.seriesRangeStart[i][dataPointIndex];
+ } else {
+ val = w.globals.seriesRangeEnd[i][dataPointIndex];
+ }
+ }
+
+ var text = '';
+
+ var getText = function getText(v) {
+ return w.config.dataLabels.formatter(v, {
+ ctx: _this.ctx,
+ seriesIndex: i,
+ dataPointIndex: dataPointIndex,
+ w: w
+ });
+ };
+
+ if (w.config.chart.type === 'bubble') {
+ val = w.globals.seriesZ[i][dataPointIndex];
+ text = getText(val);
+ y = pos.y[q];
+ var scatter = new Scatter(this.ctx);
+ var centerTextInBubbleCoords = scatter.centerTextInBubble(y, i, dataPointIndex);
+ y = centerTextInBubbleCoords.y;
+ } else {
+ if (typeof val !== 'undefined') {
+ text = getText(val);
+ }
+ }
+
+ this.plotDataLabelsText({
+ x: x,
+ y: y,
+ text: text,
+ i: i,
+ j: dataPointIndex,
+ parent: elDataLabelsWrap,
+ offsetCorrection: true,
+ dataLabelsConfig: w.config.dataLabels
+ });
+ }
+ }
+
+ return elDataLabelsWrap;
+ }
+ }, {
+ key: "plotDataLabelsText",
+ value: function plotDataLabelsText(opts) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var x = opts.x,
+ y = opts.y,
+ i = opts.i,
+ j = opts.j,
+ text = opts.text,
+ textAnchor = opts.textAnchor,
+ fontSize = opts.fontSize,
+ parent = opts.parent,
+ dataLabelsConfig = opts.dataLabelsConfig,
+ color = opts.color,
+ alwaysDrawDataLabel = opts.alwaysDrawDataLabel,
+ offsetCorrection = opts.offsetCorrection;
+
+ if (Array.isArray(w.config.dataLabels.enabledOnSeries)) {
+ if (w.config.dataLabels.enabledOnSeries.indexOf(i) < 0) {
+ return;
+ }
+ }
+
+ var correctedLabels = {
+ x: x,
+ y: y,
+ drawnextLabel: true,
+ textRects: null
+ };
+
+ if (offsetCorrection) {
+ correctedLabels = this.dataLabelsCorrection(x, y, text, i, j, alwaysDrawDataLabel, parseInt(dataLabelsConfig.style.fontSize, 10));
+ } // when zoomed, we don't need to correct labels offsets,
+ // but if normally, labels get cropped, correct them
+
+
+ if (!w.globals.zoomed) {
+ x = correctedLabels.x;
+ y = correctedLabels.y;
+ }
+
+ if (correctedLabels.textRects) {
+ // fixes #2264
+ if (x < -20 - correctedLabels.textRects.width || x > w.globals.gridWidth + correctedLabels.textRects.width + 30) {
+ // datalabels fall outside drawing area, so draw a blank label
+ text = '';
+ }
+ }
+
+ var dataLabelColor = w.globals.dataLabels.style.colors[i];
+
+ if ((w.config.chart.type === 'bar' || w.config.chart.type === 'rangeBar') && w.config.plotOptions.bar.distributed || w.config.dataLabels.distributed) {
+ dataLabelColor = w.globals.dataLabels.style.colors[j];
+ }
+
+ if (typeof dataLabelColor === 'function') {
+ dataLabelColor = dataLabelColor({
+ series: w.globals.series,
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ });
+ }
+
+ if (color) {
+ dataLabelColor = color;
+ }
+
+ var offX = dataLabelsConfig.offsetX;
+ var offY = dataLabelsConfig.offsetY;
+
+ if (w.config.chart.type === 'bar' || w.config.chart.type === 'rangeBar') {
+ // for certain chart types, we handle offsets while calculating datalabels pos
+ // why? because bars/column may have negative values and based on that
+ // offsets becomes reversed
+ offX = 0;
+ offY = 0;
+ }
+
+ if (correctedLabels.drawnextLabel) {
+ var dataLabelText = graphics.drawText({
+ width: 100,
+ height: parseInt(dataLabelsConfig.style.fontSize, 10),
+ x: x + offX,
+ y: y + offY,
+ foreColor: dataLabelColor,
+ textAnchor: textAnchor || dataLabelsConfig.textAnchor,
+ text: text,
+ fontSize: fontSize || dataLabelsConfig.style.fontSize,
+ fontFamily: dataLabelsConfig.style.fontFamily,
+ fontWeight: dataLabelsConfig.style.fontWeight || 'normal'
+ });
+ dataLabelText.attr({
+ class: 'apexcharts-datalabel',
+ cx: x,
+ cy: y
+ });
+
+ if (dataLabelsConfig.dropShadow.enabled) {
+ var textShadow = dataLabelsConfig.dropShadow;
+ var filters = new Filters(this.ctx);
+ filters.dropShadow(dataLabelText, textShadow);
+ }
+
+ parent.add(dataLabelText);
+
+ if (typeof w.globals.lastDrawnDataLabelsIndexes[i] === 'undefined') {
+ w.globals.lastDrawnDataLabelsIndexes[i] = [];
+ }
+
+ w.globals.lastDrawnDataLabelsIndexes[i].push(j);
+ }
+ }
+ }, {
+ key: "addBackgroundToDataLabel",
+ value: function addBackgroundToDataLabel(el, coords) {
+ var w = this.w;
+ var bCnf = w.config.dataLabels.background;
+ var paddingH = bCnf.padding;
+ var paddingV = bCnf.padding / 2;
+ var width = coords.width;
+ var height = coords.height;
+ var graphics = new Graphics(this.ctx);
+ var elRect = graphics.drawRect(coords.x - paddingH, coords.y - paddingV / 2, width + paddingH * 2, height + paddingV, bCnf.borderRadius, w.config.chart.background === 'transparent' ? '#fff' : w.config.chart.background, bCnf.opacity, bCnf.borderWidth, bCnf.borderColor);
+
+ if (bCnf.dropShadow.enabled) {
+ var filters = new Filters(this.ctx);
+ filters.dropShadow(elRect, bCnf.dropShadow);
+ }
+
+ return elRect;
+ }
+ }, {
+ key: "dataLabelsBackground",
+ value: function dataLabelsBackground() {
+ var w = this.w;
+ if (w.config.chart.type === 'bubble') return;
+ var elDataLabels = w.globals.dom.baseEl.querySelectorAll('.apexcharts-datalabels text');
+
+ for (var i = 0; i < elDataLabels.length; i++) {
+ var el = elDataLabels[i];
+ var coords = el.getBBox();
+ var elRect = null;
+
+ if (coords.width && coords.height) {
+ elRect = this.addBackgroundToDataLabel(el, coords);
+ }
+
+ if (elRect) {
+ el.parentNode.insertBefore(elRect.node, el);
+ var background = el.getAttribute('fill');
+ var shouldAnim = w.config.chart.animations.enabled && !w.globals.resized && !w.globals.dataChanged;
+
+ if (shouldAnim) {
+ elRect.animate().attr({
+ fill: background
+ });
+ } else {
+ elRect.attr({
+ fill: background
+ });
+ }
+
+ el.setAttribute('fill', w.config.dataLabels.background.foreColor);
+ }
+ }
+ }
+ }, {
+ key: "bringForward",
+ value: function bringForward() {
+ var w = this.w;
+ var elDataLabelsNodes = w.globals.dom.baseEl.querySelectorAll('.apexcharts-datalabels');
+ var elSeries = w.globals.dom.baseEl.querySelector('.apexcharts-plot-series:last-child');
+
+ for (var i = 0; i < elDataLabelsNodes.length; i++) {
+ if (elSeries) {
+ elSeries.insertBefore(elDataLabelsNodes[i], elSeries.nextSibling);
+ }
+ }
+ }
+ }]);
+
+ return DataLabels;
+ }();
+
+ /**
+ * ApexCharts Series Class for interaction with the Series of the chart.
+ *
+ * @module Series
+ **/
+
+ var Series = /*#__PURE__*/function () {
+ function Series(ctx) {
+ _classCallCheck(this, Series);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.legendInactiveClass = 'legend-mouseover-inactive';
+ }
+
+ _createClass(Series, [{
+ key: "getAllSeriesEls",
+ value: function getAllSeriesEls() {
+ return this.w.globals.dom.baseEl.getElementsByClassName("apexcharts-series");
+ }
+ }, {
+ key: "getSeriesByName",
+ value: function getSeriesByName(seriesName) {
+ return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner .apexcharts-series[seriesName='".concat(Utils$1.escapeString(seriesName), "']"));
+ }
+ }, {
+ key: "isSeriesHidden",
+ value: function isSeriesHidden(seriesName) {
+ var targetElement = this.getSeriesByName(seriesName);
+ var realIndex = parseInt(targetElement.getAttribute('data:realIndex'), 10);
+ var isHidden = targetElement.classList.contains('apexcharts-series-collapsed');
+ return {
+ isHidden: isHidden,
+ realIndex: realIndex
+ };
+ }
+ }, {
+ key: "addCollapsedClassToSeries",
+ value: function addCollapsedClassToSeries(elSeries, index) {
+ var w = this.w;
+
+ function iterateOnAllCollapsedSeries(series) {
+ for (var cs = 0; cs < series.length; cs++) {
+ if (series[cs].index === index) {
+ elSeries.node.classList.add('apexcharts-series-collapsed');
+ }
+ }
+ }
+
+ iterateOnAllCollapsedSeries(w.globals.collapsedSeries);
+ iterateOnAllCollapsedSeries(w.globals.ancillaryCollapsedSeries);
+ }
+ }, {
+ key: "toggleSeries",
+ value: function toggleSeries(seriesName) {
+ var isSeriesHidden = this.isSeriesHidden(seriesName);
+ this.ctx.legend.legendHelpers.toggleDataSeries(isSeriesHidden.realIndex, isSeriesHidden.isHidden);
+ return isSeriesHidden.isHidden;
+ }
+ }, {
+ key: "showSeries",
+ value: function showSeries(seriesName) {
+ var isSeriesHidden = this.isSeriesHidden(seriesName);
+
+ if (isSeriesHidden.isHidden) {
+ this.ctx.legend.legendHelpers.toggleDataSeries(isSeriesHidden.realIndex, true);
+ }
+ }
+ }, {
+ key: "hideSeries",
+ value: function hideSeries(seriesName) {
+ var isSeriesHidden = this.isSeriesHidden(seriesName);
+
+ if (!isSeriesHidden.isHidden) {
+ this.ctx.legend.legendHelpers.toggleDataSeries(isSeriesHidden.realIndex, false);
+ }
+ }
+ }, {
+ key: "resetSeries",
+ value: function resetSeries() {
+ var shouldUpdateChart = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
+ var shouldResetZoom = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
+ var shouldResetCollapsed = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
+ var w = this.w;
+ var series = Utils$1.clone(w.globals.initialSeries);
+ w.globals.previousPaths = [];
+
+ if (shouldResetCollapsed) {
+ w.globals.collapsedSeries = [];
+ w.globals.ancillaryCollapsedSeries = [];
+ w.globals.collapsedSeriesIndices = [];
+ w.globals.ancillaryCollapsedSeriesIndices = [];
+ } else {
+ series = this.emptyCollapsedSeries(series);
+ }
+
+ w.config.series = series;
+
+ if (shouldUpdateChart) {
+ if (shouldResetZoom) {
+ w.globals.zoomed = false;
+ this.ctx.updateHelpers.revertDefaultAxisMinMax();
+ }
+
+ this.ctx.updateHelpers._updateSeries(series, w.config.chart.animations.dynamicAnimation.enabled);
+ }
+ }
+ }, {
+ key: "emptyCollapsedSeries",
+ value: function emptyCollapsedSeries(series) {
+ var w = this.w;
+
+ for (var i = 0; i < series.length; i++) {
+ if (w.globals.collapsedSeriesIndices.indexOf(i) > -1) {
+ series[i].data = [];
+ }
+ }
+
+ return series;
+ }
+ }, {
+ key: "toggleSeriesOnHover",
+ value: function toggleSeriesOnHover(e, targetElement) {
+ var w = this.w;
+ if (!targetElement) targetElement = e.target;
+ var allSeriesEls = w.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");
+
+ if (e.type === 'mousemove') {
+ var seriesCnt = parseInt(targetElement.getAttribute('rel'), 10) - 1;
+ var seriesEl = null;
+ var dataLabelEl = null;
+
+ if (w.globals.axisCharts || w.config.chart.type === 'radialBar') {
+ if (w.globals.axisCharts) {
+ seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(seriesCnt, "']"));
+ dataLabelEl = w.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(seriesCnt, "']"));
+ } else {
+ seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(seriesCnt + 1, "']"));
+ }
+ } else {
+ seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(seriesCnt + 1, "'] path"));
+ }
+
+ for (var se = 0; se < allSeriesEls.length; se++) {
+ allSeriesEls[se].classList.add(this.legendInactiveClass);
+ }
+
+ if (seriesEl !== null) {
+ if (!w.globals.axisCharts) {
+ seriesEl.parentNode.classList.remove(this.legendInactiveClass);
+ }
+
+ seriesEl.classList.remove(this.legendInactiveClass);
+
+ if (dataLabelEl !== null) {
+ dataLabelEl.classList.remove(this.legendInactiveClass);
+ }
+ }
+ } else if (e.type === 'mouseout') {
+ for (var _se = 0; _se < allSeriesEls.length; _se++) {
+ allSeriesEls[_se].classList.remove(this.legendInactiveClass);
+ }
+ }
+ }
+ }, {
+ key: "highlightRangeInSeries",
+ value: function highlightRangeInSeries(e, targetElement) {
+ var _this = this;
+
+ var w = this.w;
+ var allHeatMapElements = w.globals.dom.baseEl.getElementsByClassName('apexcharts-heatmap-rect');
+
+ var activeInactive = function activeInactive(action) {
+ for (var i = 0; i < allHeatMapElements.length; i++) {
+ allHeatMapElements[i].classList[action](_this.legendInactiveClass);
+ }
+ };
+
+ var removeInactiveClassFromHoveredRange = function removeInactiveClassFromHoveredRange(range) {
+ for (var i = 0; i < allHeatMapElements.length; i++) {
+ var val = parseInt(allHeatMapElements[i].getAttribute('val'), 10);
+
+ if (val >= range.from && val <= range.to) {
+ allHeatMapElements[i].classList.remove(_this.legendInactiveClass);
+ }
+ }
+ };
+
+ if (e.type === 'mousemove') {
+ var seriesCnt = parseInt(targetElement.getAttribute('rel'), 10) - 1;
+ activeInactive('add');
+ var range = w.config.plotOptions.heatmap.colorScale.ranges[seriesCnt];
+ removeInactiveClassFromHoveredRange(range);
+ } else if (e.type === 'mouseout') {
+ activeInactive('remove');
+ }
+ }
+ }, {
+ key: "getActiveConfigSeriesIndex",
+ value: function getActiveConfigSeriesIndex() {
+ var order = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'asc';
+ var chartTypes = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
+ var w = this.w;
+ var activeIndex = 0;
+
+ if (w.config.series.length > 1) {
+ // active series flag is required to know if user has not deactivated via legend click
+ var activeSeriesIndex = w.config.series.map(function (s, index) {
+ var checkChartType = function checkChartType() {
+ if (w.globals.comboCharts) {
+ return chartTypes.length === 0 || chartTypes.length && chartTypes.indexOf(w.config.series[index].type) > -1;
+ }
+
+ return true;
+ };
+
+ var hasData = s.data && s.data.length > 0 && w.globals.collapsedSeriesIndices.indexOf(index) === -1;
+ return hasData && checkChartType() ? index : -1;
+ });
+
+ for (var a = order === 'asc' ? 0 : activeSeriesIndex.length - 1; order === 'asc' ? a < activeSeriesIndex.length : a >= 0; order === 'asc' ? a++ : a--) {
+ if (activeSeriesIndex[a] !== -1) {
+ activeIndex = activeSeriesIndex[a];
+ break;
+ }
+ }
+ }
+
+ return activeIndex;
+ }
+ }, {
+ key: "getBarSeriesIndices",
+ value: function getBarSeriesIndices() {
+ var w = this.w;
+
+ if (w.globals.comboCharts) {
+ return this.w.config.series.map(function (s, i) {
+ return s.type === 'bar' || s.type === 'column' ? i : -1;
+ }).filter(function (i) {
+ return i !== -1;
+ });
+ }
+
+ return this.w.config.series.map(function (s, i) {
+ return i;
+ });
+ }
+ }, {
+ key: "getPreviousPaths",
+ value: function getPreviousPaths() {
+ var w = this.w;
+ w.globals.previousPaths = [];
+
+ function pushPaths(seriesEls, i, type) {
+ var paths = seriesEls[i].childNodes;
+ var dArr = {
+ type: type,
+ paths: [],
+ realIndex: seriesEls[i].getAttribute('data:realIndex')
+ };
+
+ for (var j = 0; j < paths.length; j++) {
+ if (paths[j].hasAttribute('pathTo')) {
+ var d = paths[j].getAttribute('pathTo');
+ dArr.paths.push({
+ d: d
+ });
+ }
+ }
+
+ w.globals.previousPaths.push(dArr);
+ }
+
+ var getPaths = function getPaths(chartType) {
+ return w.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(chartType, "-series .apexcharts-series"));
+ };
+
+ var chartTypes = ['line', 'area', 'bar', 'rangebar', 'rangeArea', 'candlestick', 'radar'];
+ chartTypes.forEach(function (type) {
+ var paths = getPaths(type);
+
+ for (var p = 0; p < paths.length; p++) {
+ pushPaths(paths, p, type);
+ }
+ });
+ this.handlePrevBubbleScatterPaths('bubble');
+ this.handlePrevBubbleScatterPaths('scatter');
+ var heatTreeSeries = w.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(w.config.chart.type, " .apexcharts-series"));
+
+ if (heatTreeSeries.length > 0) {
+ var _loop = function _loop(h) {
+ var seriesEls = w.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(w.config.chart.type, " .apexcharts-series[data\\:realIndex='").concat(h, "'] rect"));
+ var dArr = [];
+
+ var _loop2 = function _loop2(i) {
+ var getAttr = function getAttr(x) {
+ return seriesEls[i].getAttribute(x);
+ };
+
+ var rect = {
+ x: parseFloat(getAttr('x')),
+ y: parseFloat(getAttr('y')),
+ width: parseFloat(getAttr('width')),
+ height: parseFloat(getAttr('height'))
+ };
+ dArr.push({
+ rect: rect,
+ color: seriesEls[i].getAttribute('color')
+ });
+ };
+
+ for (var i = 0; i < seriesEls.length; i++) {
+ _loop2(i);
+ }
+
+ w.globals.previousPaths.push(dArr);
+ };
+
+ for (var h = 0; h < heatTreeSeries.length; h++) {
+ _loop(h);
+ }
+ }
+
+ if (!w.globals.axisCharts) {
+ // for non-axis charts (i.e., circular charts, pathFrom is not usable. We need whole series)
+ w.globals.previousPaths = w.globals.series;
+ }
+ }
+ }, {
+ key: "handlePrevBubbleScatterPaths",
+ value: function handlePrevBubbleScatterPaths(type) {
+ var w = this.w;
+ var paths = w.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(type, "-series .apexcharts-series"));
+
+ if (paths.length > 0) {
+ for (var s = 0; s < paths.length; s++) {
+ var seriesEls = w.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(type, "-series .apexcharts-series[data\\:realIndex='").concat(s, "'] circle"));
+ var dArr = [];
+
+ for (var i = 0; i < seriesEls.length; i++) {
+ dArr.push({
+ x: seriesEls[i].getAttribute('cx'),
+ y: seriesEls[i].getAttribute('cy'),
+ r: seriesEls[i].getAttribute('r')
+ });
+ }
+
+ w.globals.previousPaths.push(dArr);
+ }
+ }
+ }
+ }, {
+ key: "clearPreviousPaths",
+ value: function clearPreviousPaths() {
+ var w = this.w;
+ w.globals.previousPaths = [];
+ w.globals.allSeriesCollapsed = false;
+ }
+ }, {
+ key: "handleNoData",
+ value: function handleNoData() {
+ var w = this.w;
+ var me = this;
+ var noDataOpts = w.config.noData;
+ var graphics = new Graphics(me.ctx);
+ var x = w.globals.svgWidth / 2;
+ var y = w.globals.svgHeight / 2;
+ var textAnchor = 'middle';
+ w.globals.noData = true;
+ w.globals.animationEnded = true;
+
+ if (noDataOpts.align === 'left') {
+ x = 10;
+ textAnchor = 'start';
+ } else if (noDataOpts.align === 'right') {
+ x = w.globals.svgWidth - 10;
+ textAnchor = 'end';
+ }
+
+ if (noDataOpts.verticalAlign === 'top') {
+ y = 50;
+ } else if (noDataOpts.verticalAlign === 'bottom') {
+ y = w.globals.svgHeight - 50;
+ }
+
+ x = x + noDataOpts.offsetX;
+ y = y + parseInt(noDataOpts.style.fontSize, 10) + 2 + noDataOpts.offsetY;
+
+ if (noDataOpts.text !== undefined && noDataOpts.text !== '') {
+ var titleText = graphics.drawText({
+ x: x,
+ y: y,
+ text: noDataOpts.text,
+ textAnchor: textAnchor,
+ fontSize: noDataOpts.style.fontSize,
+ fontFamily: noDataOpts.style.fontFamily,
+ foreColor: noDataOpts.style.color,
+ opacity: 1,
+ class: 'apexcharts-text-nodata'
+ });
+ w.globals.dom.Paper.add(titleText);
+ }
+ } // When user clicks on legends, the collapsed series is filled with [0,0,0,...,0]
+ // This is because we don't want to alter the series' length as it is used at many places
+
+ }, {
+ key: "setNullSeriesToZeroValues",
+ value: function setNullSeriesToZeroValues(series) {
+ var w = this.w;
+
+ for (var sl = 0; sl < series.length; sl++) {
+ if (series[sl].length === 0) {
+ for (var j = 0; j < series[w.globals.maxValsInArrayIndex].length; j++) {
+ series[sl].push(0);
+ }
+ }
+ }
+
+ return series;
+ }
+ }, {
+ key: "hasAllSeriesEqualX",
+ value: function hasAllSeriesEqualX() {
+ var equalLen = true;
+ var w = this.w;
+ var filteredSerX = this.filteredSeriesX();
+
+ for (var i = 0; i < filteredSerX.length - 1; i++) {
+ if (filteredSerX[i][0] !== filteredSerX[i + 1][0]) {
+ equalLen = false;
+ break;
+ }
+ }
+
+ w.globals.allSeriesHasEqualX = equalLen;
+ return equalLen;
+ }
+ }, {
+ key: "filteredSeriesX",
+ value: function filteredSeriesX() {
+ var w = this.w;
+ var filteredSeriesX = w.globals.seriesX.map(function (ser) {
+ return ser.length > 0 ? ser : [];
+ });
+ return filteredSeriesX;
+ }
+ }]);
+
+ return Series;
+ }();
+
+ var Data = /*#__PURE__*/function () {
+ function Data(ctx) {
+ _classCallCheck(this, Data);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.twoDSeries = [];
+ this.threeDSeries = [];
+ this.twoDSeriesX = [];
+ this.seriesGoals = [];
+ this.coreUtils = new CoreUtils(this.ctx);
+ }
+
+ _createClass(Data, [{
+ key: "isMultiFormat",
+ value: function isMultiFormat() {
+ return this.isFormatXY() || this.isFormat2DArray();
+ } // given format is [{x, y}, {x, y}]
+
+ }, {
+ key: "isFormatXY",
+ value: function isFormatXY() {
+ var series = this.w.config.series.slice();
+ var sr = new Series(this.ctx);
+ this.activeSeriesIndex = sr.getActiveConfigSeriesIndex();
+
+ if (typeof series[this.activeSeriesIndex].data !== 'undefined' && series[this.activeSeriesIndex].data.length > 0 && series[this.activeSeriesIndex].data[0] !== null && typeof series[this.activeSeriesIndex].data[0].x !== 'undefined' && series[this.activeSeriesIndex].data[0] !== null) {
+ return true;
+ }
+ } // given format is [[x, y], [x, y]]
+
+ }, {
+ key: "isFormat2DArray",
+ value: function isFormat2DArray() {
+ var series = this.w.config.series.slice();
+ var sr = new Series(this.ctx);
+ this.activeSeriesIndex = sr.getActiveConfigSeriesIndex();
+
+ if (typeof series[this.activeSeriesIndex].data !== 'undefined' && series[this.activeSeriesIndex].data.length > 0 && typeof series[this.activeSeriesIndex].data[0] !== 'undefined' && series[this.activeSeriesIndex].data[0] !== null && series[this.activeSeriesIndex].data[0].constructor === Array) {
+ return true;
+ }
+ }
+ }, {
+ key: "handleFormat2DArray",
+ value: function handleFormat2DArray(ser, i) {
+ var cnf = this.w.config;
+ var gl = this.w.globals;
+ var isBoxPlot = cnf.chart.type === 'boxPlot' || cnf.series[i].type === 'boxPlot';
+
+ for (var j = 0; j < ser[i].data.length; j++) {
+ if (typeof ser[i].data[j][1] !== 'undefined') {
+ if (Array.isArray(ser[i].data[j][1]) && ser[i].data[j][1].length === 4 && !isBoxPlot) {
+ // candlestick nested ohlc format
+ this.twoDSeries.push(Utils$1.parseNumber(ser[i].data[j][1][3]));
+ } else if (ser[i].data[j].length >= 5) {
+ // candlestick non-nested ohlc format
+ this.twoDSeries.push(Utils$1.parseNumber(ser[i].data[j][4]));
+ } else {
+ this.twoDSeries.push(Utils$1.parseNumber(ser[i].data[j][1]));
+ }
+
+ gl.dataFormatXNumeric = true;
+ }
+
+ if (cnf.xaxis.type === 'datetime') {
+ // if timestamps are provided and xaxis type is datetime,
+ var ts = new Date(ser[i].data[j][0]);
+ ts = new Date(ts).getTime();
+ this.twoDSeriesX.push(ts);
+ } else {
+ this.twoDSeriesX.push(ser[i].data[j][0]);
+ }
+ }
+
+ for (var _j = 0; _j < ser[i].data.length; _j++) {
+ if (typeof ser[i].data[_j][2] !== 'undefined') {
+ this.threeDSeries.push(ser[i].data[_j][2]);
+ gl.isDataXYZ = true;
+ }
+ }
+ }
+ }, {
+ key: "handleFormatXY",
+ value: function handleFormatXY(ser, i) {
+ var cnf = this.w.config;
+ var gl = this.w.globals;
+ var dt = new DateTime(this.ctx);
+ var activeI = i;
+
+ if (gl.collapsedSeriesIndices.indexOf(i) > -1) {
+ // fix #368
+ activeI = this.activeSeriesIndex;
+ } // get series
+
+
+ for (var j = 0; j < ser[i].data.length; j++) {
+ if (typeof ser[i].data[j].y !== 'undefined') {
+ if (Array.isArray(ser[i].data[j].y)) {
+ this.twoDSeries.push(Utils$1.parseNumber(ser[i].data[j].y[ser[i].data[j].y.length - 1]));
+ } else {
+ this.twoDSeries.push(Utils$1.parseNumber(ser[i].data[j].y));
+ }
+ }
+
+ if (typeof ser[i].data[j].goals !== 'undefined' && Array.isArray(ser[i].data[j].goals)) {
+ if (typeof this.seriesGoals[i] === 'undefined') {
+ this.seriesGoals[i] = [];
+ }
+
+ this.seriesGoals[i].push(ser[i].data[j].goals);
+ } else {
+ if (typeof this.seriesGoals[i] === 'undefined') {
+ this.seriesGoals[i] = [];
+ }
+
+ this.seriesGoals[i].push(null);
+ }
+ } // get seriesX
+
+
+ for (var _j2 = 0; _j2 < ser[activeI].data.length; _j2++) {
+ var isXString = typeof ser[activeI].data[_j2].x === 'string';
+ var isXArr = Array.isArray(ser[activeI].data[_j2].x);
+ var isXDate = !isXArr && !!dt.isValidDate(ser[activeI].data[_j2].x);
+
+ if (isXString || isXDate) {
+ // user supplied '01/01/2017' or a date string (a JS date object is not supported)
+ if (isXString || cnf.xaxis.convertedCatToNumeric) {
+ var isRangeColumn = gl.isBarHorizontal && gl.isRangeData;
+
+ if (cnf.xaxis.type === 'datetime' && !isRangeColumn) {
+ this.twoDSeriesX.push(dt.parseDate(ser[activeI].data[_j2].x));
+ } else {
+ // a category and not a numeric x value
+ this.fallbackToCategory = true;
+ this.twoDSeriesX.push(ser[activeI].data[_j2].x);
+
+ if (!isNaN(ser[activeI].data[_j2].x) && this.w.config.xaxis.type !== 'category' && typeof ser[activeI].data[_j2].x !== 'string') {
+ gl.isXNumeric = true;
+ }
+ }
+ } else {
+ if (cnf.xaxis.type === 'datetime') {
+ this.twoDSeriesX.push(dt.parseDate(ser[activeI].data[_j2].x.toString()));
+ } else {
+ gl.dataFormatXNumeric = true;
+ gl.isXNumeric = true;
+ this.twoDSeriesX.push(parseFloat(ser[activeI].data[_j2].x));
+ }
+ }
+ } else if (isXArr) {
+ // a multiline label described in array format
+ this.fallbackToCategory = true;
+ this.twoDSeriesX.push(ser[activeI].data[_j2].x);
+ } else {
+ // a numeric value in x property
+ gl.isXNumeric = true;
+ gl.dataFormatXNumeric = true;
+ this.twoDSeriesX.push(ser[activeI].data[_j2].x);
+ }
+ }
+
+ if (ser[i].data[0] && typeof ser[i].data[0].z !== 'undefined') {
+ for (var t = 0; t < ser[i].data.length; t++) {
+ this.threeDSeries.push(ser[i].data[t].z);
+ }
+
+ gl.isDataXYZ = true;
+ }
+ }
+ }, {
+ key: "handleRangeData",
+ value: function handleRangeData(ser, i) {
+ var gl = this.w.globals;
+ var range = {};
+
+ if (this.isFormat2DArray()) {
+ range = this.handleRangeDataFormat('array', ser, i);
+ } else if (this.isFormatXY()) {
+ range = this.handleRangeDataFormat('xy', ser, i);
+ } // Fix: RangeArea Chart: hide all series results in a crash #3984
+
+
+ gl.seriesRangeStart.push(range.start === undefined ? [] : range.start);
+ gl.seriesRangeEnd.push(range.end === undefined ? [] : range.end);
+ gl.seriesRange.push(range.rangeUniques); // check for overlaps to avoid clashes in a timeline chart
+
+ gl.seriesRange.forEach(function (sr, si) {
+ if (sr) {
+ sr.forEach(function (sarr, sarri) {
+ sarr.y.forEach(function (arr, arri) {
+ for (var sri = 0; sri < sarr.y.length; sri++) {
+ if (arri !== sri) {
+ var range1y1 = arr.y1;
+ var range1y2 = arr.y2;
+ var range2y1 = sarr.y[sri].y1;
+ var range2y2 = sarr.y[sri].y2;
+
+ if (range1y1 <= range2y2 && range2y1 <= range1y2) {
+ if (sarr.overlaps.indexOf(arr.rangeName) < 0) {
+ sarr.overlaps.push(arr.rangeName);
+ }
+
+ if (sarr.overlaps.indexOf(sarr.y[sri].rangeName) < 0) {
+ sarr.overlaps.push(sarr.y[sri].rangeName);
+ }
+ }
+ }
+ }
+ });
+ });
+ }
+ });
+ return range;
+ }
+ }, {
+ key: "handleCandleStickBoxData",
+ value: function handleCandleStickBoxData(ser, i) {
+ var gl = this.w.globals;
+ var ohlc = {};
+
+ if (this.isFormat2DArray()) {
+ ohlc = this.handleCandleStickBoxDataFormat('array', ser, i);
+ } else if (this.isFormatXY()) {
+ ohlc = this.handleCandleStickBoxDataFormat('xy', ser, i);
+ }
+
+ gl.seriesCandleO[i] = ohlc.o;
+ gl.seriesCandleH[i] = ohlc.h;
+ gl.seriesCandleM[i] = ohlc.m;
+ gl.seriesCandleL[i] = ohlc.l;
+ gl.seriesCandleC[i] = ohlc.c;
+ return ohlc;
+ }
+ }, {
+ key: "handleRangeDataFormat",
+ value: function handleRangeDataFormat(format, ser, i) {
+ var rangeStart = [];
+ var rangeEnd = [];
+ var uniqueKeys = ser[i].data.filter(function (thing, index, self) {
+ return index === self.findIndex(function (t) {
+ return t.x === thing.x;
+ });
+ }).map(function (r, index) {
+ return {
+ x: r.x,
+ overlaps: [],
+ y: []
+ };
+ });
+
+ if (format === 'array') {
+ for (var j = 0; j < ser[i].data.length; j++) {
+ if (Array.isArray(ser[i].data[j])) {
+ rangeStart.push(ser[i].data[j][1][0]);
+ rangeEnd.push(ser[i].data[j][1][1]);
+ } else {
+ rangeStart.push(ser[i].data[j]);
+ rangeEnd.push(ser[i].data[j]);
+ }
+ }
+ } else if (format === 'xy') {
+ var _loop = function _loop(_j3) {
+ var isDataPoint2D = Array.isArray(ser[i].data[_j3].y);
+ var id = Utils$1.randomId();
+ var x = ser[i].data[_j3].x;
+ var y = {
+ y1: isDataPoint2D ? ser[i].data[_j3].y[0] : ser[i].data[_j3].y,
+ y2: isDataPoint2D ? ser[i].data[_j3].y[1] : ser[i].data[_j3].y,
+ rangeName: id
+ }; // CAUTION: mutating config object by adding a new property
+ // TODO: As this is specifically for timeline rangebar charts, update the docs mentioning the series only supports xy format
+
+ ser[i].data[_j3].rangeName = id;
+ var uI = uniqueKeys.findIndex(function (t) {
+ return t.x === x;
+ });
+ uniqueKeys[uI].y.push(y);
+ rangeStart.push(y.y1);
+ rangeEnd.push(y.y2);
+ };
+
+ for (var _j3 = 0; _j3 < ser[i].data.length; _j3++) {
+ _loop(_j3);
+ }
+ }
+
+ return {
+ start: rangeStart,
+ end: rangeEnd,
+ rangeUniques: uniqueKeys
+ };
+ }
+ }, {
+ key: "handleCandleStickBoxDataFormat",
+ value: function handleCandleStickBoxDataFormat(format, ser, i) {
+ var w = this.w;
+ var isBoxPlot = w.config.chart.type === 'boxPlot' || w.config.series[i].type === 'boxPlot';
+ var serO = [];
+ var serH = [];
+ var serM = [];
+ var serL = [];
+ var serC = [];
+
+ if (format === 'array') {
+ if (isBoxPlot && ser[i].data[0].length === 6 || !isBoxPlot && ser[i].data[0].length === 5) {
+ for (var j = 0; j < ser[i].data.length; j++) {
+ serO.push(ser[i].data[j][1]);
+ serH.push(ser[i].data[j][2]);
+
+ if (isBoxPlot) {
+ serM.push(ser[i].data[j][3]);
+ serL.push(ser[i].data[j][4]);
+ serC.push(ser[i].data[j][5]);
+ } else {
+ serL.push(ser[i].data[j][3]);
+ serC.push(ser[i].data[j][4]);
+ }
+ }
+ } else {
+ for (var _j4 = 0; _j4 < ser[i].data.length; _j4++) {
+ if (Array.isArray(ser[i].data[_j4][1])) {
+ serO.push(ser[i].data[_j4][1][0]);
+ serH.push(ser[i].data[_j4][1][1]);
+
+ if (isBoxPlot) {
+ serM.push(ser[i].data[_j4][1][2]);
+ serL.push(ser[i].data[_j4][1][3]);
+ serC.push(ser[i].data[_j4][1][4]);
+ } else {
+ serL.push(ser[i].data[_j4][1][2]);
+ serC.push(ser[i].data[_j4][1][3]);
+ }
+ }
+ }
+ }
+ } else if (format === 'xy') {
+ for (var _j5 = 0; _j5 < ser[i].data.length; _j5++) {
+ if (Array.isArray(ser[i].data[_j5].y)) {
+ serO.push(ser[i].data[_j5].y[0]);
+ serH.push(ser[i].data[_j5].y[1]);
+
+ if (isBoxPlot) {
+ serM.push(ser[i].data[_j5].y[2]);
+ serL.push(ser[i].data[_j5].y[3]);
+ serC.push(ser[i].data[_j5].y[4]);
+ } else {
+ serL.push(ser[i].data[_j5].y[2]);
+ serC.push(ser[i].data[_j5].y[3]);
+ }
+ }
+ }
+ }
+
+ return {
+ o: serO,
+ h: serH,
+ m: serM,
+ l: serL,
+ c: serC
+ };
+ }
+ }, {
+ key: "parseDataAxisCharts",
+ value: function parseDataAxisCharts(ser) {
+ var _ser$,
+ _this = this;
+
+ var ctx = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.ctx;
+ var cnf = this.w.config;
+ var gl = this.w.globals;
+ var dt = new DateTime(ctx);
+ var xlabels = cnf.labels.length > 0 ? cnf.labels.slice() : cnf.xaxis.categories.slice();
+ gl.isRangeBar = cnf.chart.type === 'rangeBar' && gl.isBarHorizontal;
+ gl.hasXaxisGroups = cnf.xaxis.type === 'category' && cnf.xaxis.group.groups.length > 0;
+
+ if (gl.hasXaxisGroups) {
+ gl.groups = cnf.xaxis.group.groups;
+ }
+
+ gl.hasSeriesGroups = (_ser$ = ser[0]) === null || _ser$ === void 0 ? void 0 : _ser$.group;
+
+ if (gl.hasSeriesGroups) {
+ var buckets = [];
+
+ var groups = _toConsumableArray(new Set(ser.map(function (s) {
+ return s.group;
+ })));
+
+ ser.forEach(function (s, i) {
+ var index = groups.indexOf(s.group);
+ if (!buckets[index]) buckets[index] = [];
+ buckets[index].push(s.name);
+ });
+ gl.seriesGroups = buckets;
+ }
+
+ var handleDates = function handleDates() {
+ for (var j = 0; j < xlabels.length; j++) {
+ if (typeof xlabels[j] === 'string') {
+ // user provided date strings
+ var isDate = dt.isValidDate(xlabels[j]);
+
+ if (isDate) {
+ _this.twoDSeriesX.push(dt.parseDate(xlabels[j]));
+ } else {
+ throw new Error('You have provided invalid Date format. Please provide a valid JavaScript Date');
+ }
+ } else {
+ // user provided timestamps
+ _this.twoDSeriesX.push(xlabels[j]);
+ }
+ }
+ };
+
+ for (var i = 0; i < ser.length; i++) {
+ this.twoDSeries = [];
+ this.twoDSeriesX = [];
+ this.threeDSeries = [];
+
+ if (typeof ser[i].data === 'undefined') {
+ console.error("It is a possibility that you may have not included 'data' property in series.");
+ return;
+ }
+
+ if (cnf.chart.type === 'rangeBar' || cnf.chart.type === 'rangeArea' || ser[i].type === 'rangeBar' || ser[i].type === 'rangeArea') {
+ gl.isRangeData = true;
+
+ if (cnf.chart.type === 'rangeBar' || cnf.chart.type === 'rangeArea') {
+ this.handleRangeData(ser, i);
+ }
+ }
+
+ if (this.isMultiFormat()) {
+ if (this.isFormat2DArray()) {
+ this.handleFormat2DArray(ser, i);
+ } else if (this.isFormatXY()) {
+ this.handleFormatXY(ser, i);
+ }
+
+ if (cnf.chart.type === 'candlestick' || ser[i].type === 'candlestick' || cnf.chart.type === 'boxPlot' || ser[i].type === 'boxPlot') {
+ this.handleCandleStickBoxData(ser, i);
+ }
+
+ gl.series.push(this.twoDSeries);
+ gl.labels.push(this.twoDSeriesX);
+ gl.seriesX.push(this.twoDSeriesX);
+ gl.seriesGoals = this.seriesGoals;
+
+ if (i === this.activeSeriesIndex && !this.fallbackToCategory) {
+ gl.isXNumeric = true;
+ }
+ } else {
+ if (cnf.xaxis.type === 'datetime') {
+ // user didn't supplied [{x,y}] or [[x,y]], but single array in data.
+ // Also labels/categories were supplied differently
+ gl.isXNumeric = true;
+ handleDates();
+ gl.seriesX.push(this.twoDSeriesX);
+ } else if (cnf.xaxis.type === 'numeric') {
+ gl.isXNumeric = true;
+
+ if (xlabels.length > 0) {
+ this.twoDSeriesX = xlabels;
+ gl.seriesX.push(this.twoDSeriesX);
+ }
+ }
+
+ gl.labels.push(this.twoDSeriesX);
+ var singleArray = ser[i].data.map(function (d) {
+ return Utils$1.parseNumber(d);
+ });
+ gl.series.push(singleArray);
+ }
+
+ gl.seriesZ.push(this.threeDSeries);
+
+ if (ser[i].name !== undefined) {
+ gl.seriesNames.push(ser[i].name);
+ } else {
+ gl.seriesNames.push('series-' + parseInt(i + 1, 10));
+ } // overrided default color if user inputs color with series data
+
+
+ if (ser[i].color !== undefined) {
+ gl.seriesColors.push(ser[i].color);
+ } else {
+ gl.seriesColors.push(undefined);
+ }
+ }
+
+ return this.w;
+ }
+ }, {
+ key: "parseDataNonAxisCharts",
+ value: function parseDataNonAxisCharts(ser) {
+ var gl = this.w.globals;
+ var cnf = this.w.config;
+ gl.series = ser.slice();
+ gl.seriesNames = cnf.labels.slice();
+
+ for (var i = 0; i < gl.series.length; i++) {
+ if (gl.seriesNames[i] === undefined) {
+ gl.seriesNames.push('series-' + (i + 1));
+ }
+ }
+
+ return this.w;
+ }
+ /** User possibly set string categories in xaxis.categories or labels prop
+ * Or didn't set xaxis labels at all - in which case we manually do it.
+ * If user passed series data as [[3, 2], [4, 5]] or [{ x: 3, y: 55 }],
+ * this shouldn't be called
+ * @param {array} ser - the series which user passed to the config
+ */
+
+ }, {
+ key: "handleExternalLabelsData",
+ value: function handleExternalLabelsData(ser) {
+ var cnf = this.w.config;
+ var gl = this.w.globals;
+
+ if (cnf.xaxis.categories.length > 0) {
+ // user provided labels in xaxis.category prop
+ gl.labels = cnf.xaxis.categories;
+ } else if (cnf.labels.length > 0) {
+ // user provided labels in labels props
+ gl.labels = cnf.labels.slice();
+ } else if (this.fallbackToCategory) {
+ // user provided labels in x prop in [{ x: 3, y: 55 }] data, and those labels are already stored in gl.labels[0], so just re-arrange the gl.labels array
+ gl.labels = gl.labels[0];
+
+ if (gl.seriesRange.length) {
+ gl.seriesRange.map(function (srt) {
+ srt.forEach(function (sr) {
+ if (gl.labels.indexOf(sr.x) < 0 && sr.x) {
+ gl.labels.push(sr.x);
+ }
+ });
+ }); // remove duplicate x-axis labels
+
+ gl.labels = Array.from(new Set(gl.labels.map(JSON.stringify)), JSON.parse);
+ }
+
+ if (cnf.xaxis.convertedCatToNumeric) {
+ var defaults = new Defaults(cnf);
+ defaults.convertCatToNumericXaxis(cnf, this.ctx, gl.seriesX[0]);
+
+ this._generateExternalLabels(ser);
+ }
+ } else {
+ this._generateExternalLabels(ser);
+ }
+ }
+ }, {
+ key: "_generateExternalLabels",
+ value: function _generateExternalLabels(ser) {
+ var gl = this.w.globals;
+ var cnf = this.w.config; // user didn't provided any labels, fallback to 1-2-3-4-5
+
+ var labelArr = [];
+
+ if (gl.axisCharts) {
+ if (gl.series.length > 0) {
+ if (this.isFormatXY()) {
+ // in case there is a combo chart (boxplot/scatter)
+ // and there are duplicated x values, we need to eliminate duplicates
+ var seriesDataFiltered = cnf.series.map(function (serie, s) {
+ return serie.data.filter(function (v, i, a) {
+ return a.findIndex(function (t) {
+ return t.x === v.x;
+ }) === i;
+ });
+ });
+ var len = seriesDataFiltered.reduce(function (p, c, i, a) {
+ return a[p].length > c.length ? p : i;
+ }, 0);
+
+ for (var i = 0; i < seriesDataFiltered[len].length; i++) {
+ labelArr.push(i + 1);
+ }
+ } else {
+ for (var _i = 0; _i < gl.series[gl.maxValsInArrayIndex].length; _i++) {
+ labelArr.push(_i + 1);
+ }
+ }
+ }
+
+ gl.seriesX = []; // create gl.seriesX as it will be used in calculations of x positions
+
+ for (var _i2 = 0; _i2 < ser.length; _i2++) {
+ gl.seriesX.push(labelArr);
+ } // turn on the isXNumeric flag to allow minX and maxX to function properly
+
+
+ if (!this.w.globals.isBarHorizontal) {
+ gl.isXNumeric = true;
+ }
+ } // no series to pull labels from, put a 0-10 series
+ // possibly, user collapsed all series. Hence we can't work with above calc
+
+
+ if (labelArr.length === 0) {
+ labelArr = gl.axisCharts ? [] : gl.series.map(function (gls, glsi) {
+ return glsi + 1;
+ });
+
+ for (var _i3 = 0; _i3 < ser.length; _i3++) {
+ gl.seriesX.push(labelArr);
+ }
+ } // Finally, pass the labelArr in gl.labels which will be printed on x-axis
+
+
+ gl.labels = labelArr;
+
+ if (cnf.xaxis.convertedCatToNumeric) {
+ gl.categoryLabels = labelArr.map(function (l) {
+ return cnf.xaxis.labels.formatter(l);
+ });
+ } // Turn on this global flag to indicate no labels were provided by user
+
+
+ gl.noLabelsProvided = true;
+ } // Segregate user provided data into appropriate vars
+
+ }, {
+ key: "parseData",
+ value: function parseData(ser) {
+ var w = this.w;
+ var cnf = w.config;
+ var gl = w.globals;
+ this.excludeCollapsedSeriesInYAxis(); // If we detected string in X prop of series, we fallback to category x-axis
+
+ this.fallbackToCategory = false;
+ this.ctx.core.resetGlobals();
+ this.ctx.core.isMultipleY();
+
+ if (gl.axisCharts) {
+ // axisCharts includes line / area / column / scatter
+ this.parseDataAxisCharts(ser);
+ this.coreUtils.getLargestSeries();
+ } else {
+ // non-axis charts are pie / donut
+ this.parseDataNonAxisCharts(ser);
+ } // set Null values to 0 in all series when user hides/shows some series
+
+
+ if (cnf.chart.stacked) {
+ var series = new Series(this.ctx);
+ gl.series = series.setNullSeriesToZeroValues(gl.series);
+ }
+
+ this.coreUtils.getSeriesTotals();
+
+ if (gl.axisCharts) {
+ gl.stackedSeriesTotals = this.coreUtils.getStackedSeriesTotals();
+ gl.stackedSeriesTotalsByGroups = this.coreUtils.getStackedSeriesTotalsByGroups();
+ }
+
+ this.coreUtils.getPercentSeries();
+
+ if (!gl.dataFormatXNumeric && (!gl.isXNumeric || cnf.xaxis.type === 'numeric' && cnf.labels.length === 0 && cnf.xaxis.categories.length === 0)) {
+ // x-axis labels couldn't be detected; hence try searching every option in config
+ this.handleExternalLabelsData(ser);
+ } // check for multiline xaxis
+
+
+ var catLabels = this.coreUtils.getCategoryLabels(gl.labels);
+
+ for (var l = 0; l < catLabels.length; l++) {
+ if (Array.isArray(catLabels[l])) {
+ gl.isMultiLineX = true;
+ break;
+ }
+ }
+ }
+ }, {
+ key: "excludeCollapsedSeriesInYAxis",
+ value: function excludeCollapsedSeriesInYAxis() {
+ var w = this.w; // fix issue #1215
+ // Post revision 3.46.0 there is no longer a strict one-to-one
+ // correspondence between series and Y axes.
+ // An axis can be ignored only while all series referenced by it
+ // are collapsed.
+
+ var yAxisIndexes = [];
+ w.globals.seriesYAxisMap.forEach(function (yAxisArr, yi) {
+ var collapsedCount = 0;
+ yAxisArr.forEach(function (seriesIndex) {
+ if (w.globals.collapsedSeriesIndices.indexOf(seriesIndex) !== -1) {
+ collapsedCount++;
+ }
+ }); // It's possible to have a yaxis that doesn't reference any series yet,
+ // eg, because there are no series' yet, so don't list it as ignored
+ // prematurely.
+
+ if (collapsedCount > 0 && collapsedCount == yAxisArr.length) {
+ yAxisIndexes.push(yi);
+ }
+ });
+ w.globals.ignoreYAxisIndexes = yAxisIndexes.map(function (x) {
+ return x;
+ });
+ }
+ }]);
+
+ return Data;
+ }();
+
+ var Exports = /*#__PURE__*/function () {
+ function Exports(ctx) {
+ _classCallCheck(this, Exports);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(Exports, [{
+ key: "scaleSvgNode",
+ value: function scaleSvgNode(svg, scale) {
+ // get current both width and height of the svg
+ var svgWidth = parseFloat(svg.getAttributeNS(null, 'width'));
+ var svgHeight = parseFloat(svg.getAttributeNS(null, 'height')); // set new width and height based on the scale
+
+ svg.setAttributeNS(null, 'width', svgWidth * scale);
+ svg.setAttributeNS(null, 'height', svgHeight * scale);
+ svg.setAttributeNS(null, 'viewBox', '0 0 ' + svgWidth + ' ' + svgHeight);
+ }
+ }, {
+ key: "fixSvgStringForIe11",
+ value: function fixSvgStringForIe11(svgData) {
+ // IE11 generates broken SVG that we have to fix by using regex
+ if (!Utils$1.isIE11()) {
+ // not IE11 - noop
+ return svgData.replace(/ /g, ' ');
+ } // replace second occurrence of "xmlns" attribute with "xmlns:xlink" with correct url + add xmlns:svgjs
+
+
+ var nXmlnsSeen = 0;
+ var result = svgData.replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g, function (match) {
+ nXmlnsSeen++;
+ return nXmlnsSeen === 2 ? 'xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev"' : match;
+ }); // remove the invalid empty namespace declarations
+
+ result = result.replace(/xmlns:NS\d+=""/g, ''); // remove these broken namespaces from attributes
+
+ result = result.replace(/NS\d+:(\w+:\w+=")/g, '$1');
+ return result;
+ }
+ }, {
+ key: "getSvgString",
+ value: function getSvgString(scale) {
+ if (scale == undefined) {
+ scale = 1; // if no scale is specified, don't scale...
+ }
+
+ var svgString = this.w.globals.dom.Paper.svg(); // in case the scale is different than 1, the svg needs to be rescaled
+
+ if (scale !== 1) {
+ // clone the svg node so it remains intact in the UI
+ var svgNode = this.w.globals.dom.Paper.node.cloneNode(true); // scale the image
+
+ this.scaleSvgNode(svgNode, scale); // get the string representation of the svgNode
+
+ svgString = new XMLSerializer().serializeToString(svgNode);
+ }
+
+ return this.fixSvgStringForIe11(svgString);
+ }
+ }, {
+ key: "cleanup",
+ value: function cleanup() {
+ var w = this.w; // hide some elements to avoid printing them on exported svg
+
+ var xcrosshairs = w.globals.dom.baseEl.getElementsByClassName('apexcharts-xcrosshairs');
+ var ycrosshairs = w.globals.dom.baseEl.getElementsByClassName('apexcharts-ycrosshairs');
+ var zoomSelectionRects = w.globals.dom.baseEl.querySelectorAll('.apexcharts-zoom-rect, .apexcharts-selection-rect');
+ Array.prototype.forEach.call(zoomSelectionRects, function (z) {
+ z.setAttribute('width', 0);
+ });
+
+ if (xcrosshairs && xcrosshairs[0]) {
+ xcrosshairs[0].setAttribute('x', -500);
+ xcrosshairs[0].setAttribute('x1', -500);
+ xcrosshairs[0].setAttribute('x2', -500);
+ }
+
+ if (ycrosshairs && ycrosshairs[0]) {
+ ycrosshairs[0].setAttribute('y', -100);
+ ycrosshairs[0].setAttribute('y1', -100);
+ ycrosshairs[0].setAttribute('y2', -100);
+ }
+ }
+ }, {
+ key: "svgUrl",
+ value: function svgUrl() {
+ this.cleanup();
+ var svgData = this.getSvgString();
+ var svgBlob = new Blob([svgData], {
+ type: 'image/svg+xml;charset=utf-8'
+ });
+ return URL.createObjectURL(svgBlob);
+ }
+ }, {
+ key: "dataURI",
+ value: function dataURI(options) {
+ var _this = this;
+
+ return new Promise(function (resolve) {
+ var w = _this.w;
+ var scale = options ? options.scale || options.width / w.globals.svgWidth : 1;
+
+ _this.cleanup();
+
+ var canvas = document.createElement('canvas');
+ canvas.width = w.globals.svgWidth * scale;
+ canvas.height = parseInt(w.globals.dom.elWrap.style.height, 10) * scale; // because of resizeNonAxisCharts
+
+ var canvasBg = w.config.chart.background === 'transparent' ? '#fff' : w.config.chart.background;
+ var ctx = canvas.getContext('2d');
+ ctx.fillStyle = canvasBg;
+ ctx.fillRect(0, 0, canvas.width * scale, canvas.height * scale);
+
+ var svgData = _this.getSvgString(scale);
+
+ if (window.canvg && Utils$1.isIE11()) {
+ // use canvg as a polyfill to workaround ie11 considering a canvas with loaded svg 'unsafe'
+ // without ignoreClear we lose our background color; without ignoreDimensions some grid lines become invisible
+ var v = window.canvg.Canvg.fromString(ctx, svgData, {
+ ignoreClear: true,
+ ignoreDimensions: true
+ }); // render the svg to canvas
+
+ v.start();
+ var blob = canvas.msToBlob(); // dispose - missing this will cause a memory leak
+
+ v.stop();
+ resolve({
+ blob: blob
+ });
+ } else {
+ var svgUrl = 'data:image/svg+xml,' + encodeURIComponent(svgData);
+ var img = new Image();
+ img.crossOrigin = 'anonymous';
+
+ img.onload = function () {
+ ctx.drawImage(img, 0, 0);
+
+ if (canvas.msToBlob) {
+ // IE and Edge can't navigate to data urls, so we return the blob instead
+ var _blob = canvas.msToBlob();
+
+ resolve({
+ blob: _blob
+ });
+ } else {
+ var imgURI = canvas.toDataURL('image/png');
+ resolve({
+ imgURI: imgURI
+ });
+ }
+ };
+
+ img.src = svgUrl;
+ }
+ });
+ }
+ }, {
+ key: "exportToSVG",
+ value: function exportToSVG() {
+ this.triggerDownload(this.svgUrl(), this.w.config.chart.toolbar.export.svg.filename, '.svg');
+ }
+ }, {
+ key: "exportToPng",
+ value: function exportToPng() {
+ var _this2 = this;
+
+ this.dataURI().then(function (_ref) {
+ var imgURI = _ref.imgURI,
+ blob = _ref.blob;
+
+ if (blob) {
+ navigator.msSaveOrOpenBlob(blob, _this2.w.globals.chartID + '.png');
+ } else {
+ _this2.triggerDownload(imgURI, _this2.w.config.chart.toolbar.export.png.filename, '.png');
+ }
+ });
+ }
+ }, {
+ key: "exportToCSV",
+ value: function exportToCSV(_ref2) {
+ var _this3 = this;
+
+ var series = _ref2.series,
+ fileName = _ref2.fileName,
+ _ref2$columnDelimiter = _ref2.columnDelimiter,
+ columnDelimiter = _ref2$columnDelimiter === void 0 ? ',' : _ref2$columnDelimiter,
+ _ref2$lineDelimiter = _ref2.lineDelimiter,
+ lineDelimiter = _ref2$lineDelimiter === void 0 ? '\n' : _ref2$lineDelimiter;
+ var w = this.w;
+ if (!series) series = w.config.series;
+ var columns = [];
+ var rows = [];
+ var result = '';
+ var universalBOM = "\uFEFF";
+ var gSeries = w.globals.series.map(function (s, i) {
+ return w.globals.collapsedSeriesIndices.indexOf(i) === -1 ? s : [];
+ });
+
+ var isTimeStamp = function isTimeStamp(num) {
+ return w.config.xaxis.type === 'datetime' && String(num).length >= 10;
+ };
+
+ var seriesMaxDataLength = Math.max.apply(Math, _toConsumableArray(series.map(function (s) {
+ return s.data ? s.data.length : 0;
+ })));
+ var dataFormat = new Data(this.ctx);
+ var axesUtils = new AxesUtils(this.ctx);
+
+ var getCat = function getCat(i) {
+ var cat = ''; // pie / donut/ radial
+
+ if (!w.globals.axisCharts) {
+ cat = w.config.labels[i];
+ } else {
+ // xy charts
+ // non datetime
+ if (w.config.xaxis.type === 'category' || w.config.xaxis.convertedCatToNumeric) {
+ if (w.globals.isBarHorizontal) {
+ var lbFormatter = w.globals.yLabelFormatters[0];
+ var sr = new Series(_this3.ctx);
+ var activeSeries = sr.getActiveConfigSeriesIndex();
+ cat = lbFormatter(w.globals.labels[i], {
+ seriesIndex: activeSeries,
+ dataPointIndex: i,
+ w: w
+ });
+ } else {
+ cat = axesUtils.getLabel(w.globals.labels, w.globals.timescaleLabels, 0, i).text;
+ }
+ } // datetime, but labels specified in categories or labels
+
+
+ if (w.config.xaxis.type === 'datetime') {
+ if (w.config.xaxis.categories.length) {
+ cat = w.config.xaxis.categories[i];
+ } else if (w.config.labels.length) {
+ cat = w.config.labels[i];
+ }
+ }
+ }
+
+ if (Array.isArray(cat)) {
+ cat = cat.join(' ');
+ }
+
+ return Utils$1.isNumber(cat) ? cat : cat.split(columnDelimiter).join('');
+ }; // Fix https://github.com/apexcharts/apexcharts.js/issues/3365
+
+
+ var getEmptyDataForCsvColumn = function getEmptyDataForCsvColumn() {
+ return _toConsumableArray(Array(seriesMaxDataLength)).map(function () {
+ return '';
+ });
+ };
+
+ var handleAxisRowsColumns = function handleAxisRowsColumns(s, sI) {
+ if (columns.length && sI === 0) {
+ // It's the first series. Go ahead and create the first row with header information.
+ rows.push(columns.join(columnDelimiter));
+ }
+
+ if (s.data) {
+ // Use the data we have, or generate a properly sized empty array with empty data if some data is missing.
+ s.data = s.data.length && s.data || getEmptyDataForCsvColumn();
+
+ for (var i = 0; i < s.data.length; i++) {
+ // Reset the columns array so that we can start building columns for this row.
+ columns = [];
+ var cat = getCat(i);
+
+ if (!cat) {
+ if (dataFormat.isFormatXY()) {
+ cat = series[sI].data[i].x;
+ } else if (dataFormat.isFormat2DArray()) {
+ cat = series[sI].data[i] ? series[sI].data[i][0] : '';
+ }
+ }
+
+ if (sI === 0) {
+ // It's the first series. Also handle the category.
+ columns.push(isTimeStamp(cat) ? w.config.chart.toolbar.export.csv.dateFormatter(cat) : Utils$1.isNumber(cat) ? cat : cat.split(columnDelimiter).join(''));
+
+ for (var ci = 0; ci < w.globals.series.length; ci++) {
+ if (dataFormat.isFormatXY()) {
+ var _series$ci$data$i;
+
+ columns.push((_series$ci$data$i = series[ci].data[i]) === null || _series$ci$data$i === void 0 ? void 0 : _series$ci$data$i.y);
+ } else {
+ columns.push(gSeries[ci][i]);
+ }
+ }
+ }
+
+ if (w.config.chart.type === 'candlestick' || s.type && s.type === 'candlestick') {
+ columns.pop();
+ columns.push(w.globals.seriesCandleO[sI][i]);
+ columns.push(w.globals.seriesCandleH[sI][i]);
+ columns.push(w.globals.seriesCandleL[sI][i]);
+ columns.push(w.globals.seriesCandleC[sI][i]);
+ }
+
+ if (w.config.chart.type === 'boxPlot' || s.type && s.type === 'boxPlot') {
+ columns.pop();
+ columns.push(w.globals.seriesCandleO[sI][i]);
+ columns.push(w.globals.seriesCandleH[sI][i]);
+ columns.push(w.globals.seriesCandleM[sI][i]);
+ columns.push(w.globals.seriesCandleL[sI][i]);
+ columns.push(w.globals.seriesCandleC[sI][i]);
+ }
+
+ if (w.config.chart.type === 'rangeBar') {
+ columns.pop();
+ columns.push(w.globals.seriesRangeStart[sI][i]);
+ columns.push(w.globals.seriesRangeEnd[sI][i]);
+ }
+
+ if (columns.length) {
+ rows.push(columns.join(columnDelimiter));
+ }
+ }
+ }
+ };
+
+ var handleUnequalXValues = function handleUnequalXValues() {
+ var categories = new Set();
+ var data = {};
+ series.forEach(function (s, sI) {
+ s === null || s === void 0 ? void 0 : s.data.forEach(function (dataItem) {
+ var cat, value;
+
+ if (dataFormat.isFormatXY()) {
+ cat = dataItem.x;
+ value = dataItem.y;
+ } else if (dataFormat.isFormat2DArray()) {
+ cat = dataItem[0];
+ value = dataItem[1];
+ } else {
+ return;
+ }
+
+ if (!data[cat]) {
+ data[cat] = Array(series.length).fill('');
+ }
+
+ data[cat][sI] = value;
+ categories.add(cat);
+ });
+ });
+
+ if (columns.length) {
+ rows.push(columns.join(columnDelimiter));
+ }
+
+ Array.from(categories).sort().forEach(function (cat) {
+ rows.push([isTimeStamp(cat) && w.config.xaxis.type === 'datetime' ? w.config.chart.toolbar.export.csv.dateFormatter(cat) : Utils$1.isNumber(cat) ? cat : cat.split(columnDelimiter).join(''), data[cat].join(columnDelimiter)]);
+ });
+ };
+
+ columns.push(w.config.chart.toolbar.export.csv.headerCategory);
+
+ if (w.config.chart.type === 'boxPlot') {
+ columns.push('minimum');
+ columns.push('q1');
+ columns.push('median');
+ columns.push('q3');
+ columns.push('maximum');
+ } else if (w.config.chart.type === 'candlestick') {
+ columns.push('open');
+ columns.push('high');
+ columns.push('low');
+ columns.push('close');
+ } else if (w.config.chart.type === 'rangeBar') {
+ columns.push('minimum');
+ columns.push('maximum');
+ } else {
+ series.map(function (s, sI) {
+ var sname = (s.name ? s.name : "series-".concat(sI)) + '';
+
+ if (w.globals.axisCharts) {
+ columns.push(sname.split(columnDelimiter).join('') ? sname.split(columnDelimiter).join('') : "series-".concat(sI));
+ }
+ });
+ }
+
+ if (!w.globals.axisCharts) {
+ columns.push(w.config.chart.toolbar.export.csv.headerValue);
+ rows.push(columns.join(columnDelimiter));
+ }
+
+ if (!w.globals.allSeriesHasEqualX && w.globals.axisCharts && !w.config.xaxis.categories.length && !w.config.labels.length) {
+ handleUnequalXValues();
+ } else {
+ series.map(function (s, sI) {
+ if (w.globals.axisCharts) {
+ handleAxisRowsColumns(s, sI);
+ } else {
+ columns = [];
+ columns.push(w.globals.labels[sI].split(columnDelimiter).join(''));
+ columns.push(gSeries[sI]);
+ rows.push(columns.join(columnDelimiter));
+ }
+ });
+ }
+
+ result += rows.join(lineDelimiter);
+ this.triggerDownload('data:text/csv; charset=utf-8,' + encodeURIComponent(universalBOM + result), fileName ? fileName : w.config.chart.toolbar.export.csv.filename, '.csv');
+ }
+ }, {
+ key: "triggerDownload",
+ value: function triggerDownload(href, filename, ext) {
+ var downloadLink = document.createElement('a');
+ downloadLink.href = href;
+ downloadLink.download = (filename ? filename : this.w.globals.chartID) + ext;
+ document.body.appendChild(downloadLink);
+ downloadLink.click();
+ document.body.removeChild(downloadLink);
+ }
+ }]);
+
+ return Exports;
+ }();
+
+ /**
+ * ApexCharts XAxis Class for drawing X-Axis.
+ *
+ * @module XAxis
+ **/
+
+ var XAxis = /*#__PURE__*/function () {
+ function XAxis(ctx, elgrid) {
+ _classCallCheck(this, XAxis);
+
+ this.ctx = ctx;
+ this.elgrid = elgrid;
+ this.w = ctx.w;
+ var w = this.w;
+ this.axesUtils = new AxesUtils(ctx);
+ this.xaxisLabels = w.globals.labels.slice();
+
+ if (w.globals.timescaleLabels.length > 0 && !w.globals.isBarHorizontal) {
+ // timeline labels are there and chart is not rangeabr timeline
+ this.xaxisLabels = w.globals.timescaleLabels.slice();
+ }
+
+ if (w.config.xaxis.overwriteCategories) {
+ this.xaxisLabels = w.config.xaxis.overwriteCategories;
+ }
+
+ this.drawnLabels = [];
+ this.drawnLabelsRects = [];
+
+ if (w.config.xaxis.position === 'top') {
+ this.offY = 0;
+ } else {
+ this.offY = w.globals.gridHeight + 1;
+ }
+
+ this.offY = this.offY + w.config.xaxis.axisBorder.offsetY;
+ this.isCategoryBarHorizontal = w.config.chart.type === 'bar' && w.config.plotOptions.bar.horizontal;
+ this.xaxisFontSize = w.config.xaxis.labels.style.fontSize;
+ this.xaxisFontFamily = w.config.xaxis.labels.style.fontFamily;
+ this.xaxisForeColors = w.config.xaxis.labels.style.colors;
+ this.xaxisBorderWidth = w.config.xaxis.axisBorder.width;
+
+ if (this.isCategoryBarHorizontal) {
+ this.xaxisBorderWidth = w.config.yaxis[0].axisBorder.width.toString();
+ }
+
+ if (this.xaxisBorderWidth.indexOf('%') > -1) {
+ this.xaxisBorderWidth = w.globals.gridWidth * parseInt(this.xaxisBorderWidth, 10) / 100;
+ } else {
+ this.xaxisBorderWidth = parseInt(this.xaxisBorderWidth, 10);
+ }
+
+ this.xaxisBorderHeight = w.config.xaxis.axisBorder.height; // For bars, we will only consider single y xais,
+ // as we are not providing multiple yaxis for bar charts
+
+ this.yaxis = w.config.yaxis[0];
+ }
+
+ _createClass(XAxis, [{
+ key: "drawXaxis",
+ value: function drawXaxis() {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var elXaxis = graphics.group({
+ class: 'apexcharts-xaxis',
+ transform: "translate(".concat(w.config.xaxis.offsetX, ", ").concat(w.config.xaxis.offsetY, ")")
+ });
+ var elXaxisTexts = graphics.group({
+ class: 'apexcharts-xaxis-texts-g',
+ transform: "translate(".concat(w.globals.translateXAxisX, ", ").concat(w.globals.translateXAxisY, ")")
+ });
+ elXaxis.add(elXaxisTexts);
+ var labels = [];
+
+ for (var i = 0; i < this.xaxisLabels.length; i++) {
+ labels.push(this.xaxisLabels[i]);
+ }
+
+ this.drawXAxisLabelAndGroup(true, graphics, elXaxisTexts, labels, w.globals.isXNumeric, function (i, colWidth) {
+ return colWidth;
+ });
+
+ if (w.globals.hasXaxisGroups) {
+ var labelsGroup = w.globals.groups;
+ labels = [];
+
+ for (var _i = 0; _i < labelsGroup.length; _i++) {
+ labels.push(labelsGroup[_i].title);
+ }
+
+ var overwriteStyles = {};
+
+ if (w.config.xaxis.group.style) {
+ overwriteStyles.xaxisFontSize = w.config.xaxis.group.style.fontSize;
+ overwriteStyles.xaxisFontFamily = w.config.xaxis.group.style.fontFamily;
+ overwriteStyles.xaxisForeColors = w.config.xaxis.group.style.colors;
+ overwriteStyles.fontWeight = w.config.xaxis.group.style.fontWeight;
+ overwriteStyles.cssClass = w.config.xaxis.group.style.cssClass;
+ }
+
+ this.drawXAxisLabelAndGroup(false, graphics, elXaxisTexts, labels, false, function (i, colWidth) {
+ return labelsGroup[i].cols * colWidth;
+ }, overwriteStyles);
+ }
+
+ if (w.config.xaxis.title.text !== undefined) {
+ var elXaxisTitle = graphics.group({
+ class: 'apexcharts-xaxis-title'
+ });
+ var elXAxisTitleText = graphics.drawText({
+ x: w.globals.gridWidth / 2 + w.config.xaxis.title.offsetX,
+ y: this.offY + parseFloat(this.xaxisFontSize) + (w.config.xaxis.position === 'bottom' ? w.globals.xAxisLabelsHeight : -w.globals.xAxisLabelsHeight - 10) + w.config.xaxis.title.offsetY,
+ text: w.config.xaxis.title.text,
+ textAnchor: 'middle',
+ fontSize: w.config.xaxis.title.style.fontSize,
+ fontFamily: w.config.xaxis.title.style.fontFamily,
+ fontWeight: w.config.xaxis.title.style.fontWeight,
+ foreColor: w.config.xaxis.title.style.color,
+ cssClass: 'apexcharts-xaxis-title-text ' + w.config.xaxis.title.style.cssClass
+ });
+ elXaxisTitle.add(elXAxisTitleText);
+ elXaxis.add(elXaxisTitle);
+ }
+
+ if (w.config.xaxis.axisBorder.show) {
+ var offX = w.globals.barPadForNumericAxis;
+ var elHorzLine = graphics.drawLine(w.globals.padHorizontal + w.config.xaxis.axisBorder.offsetX - offX, this.offY, this.xaxisBorderWidth + offX, this.offY, w.config.xaxis.axisBorder.color, 0, this.xaxisBorderHeight);
+
+ if (this.elgrid && this.elgrid.elGridBorders && w.config.grid.show) {
+ this.elgrid.elGridBorders.add(elHorzLine);
+ } else {
+ elXaxis.add(elHorzLine);
+ }
+ }
+
+ return elXaxis;
+ }
+ }, {
+ key: "drawXAxisLabelAndGroup",
+ value: function drawXAxisLabelAndGroup(isLeafGroup, graphics, elXaxisTexts, labels, isXNumeric, colWidthCb) {
+ var _this = this;
+
+ var overwriteStyles = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : {};
+ var drawnLabels = [];
+ var drawnLabelsRects = [];
+ var w = this.w;
+ var xaxisFontSize = overwriteStyles.xaxisFontSize || this.xaxisFontSize;
+ var xaxisFontFamily = overwriteStyles.xaxisFontFamily || this.xaxisFontFamily;
+ var xaxisForeColors = overwriteStyles.xaxisForeColors || this.xaxisForeColors;
+ var fontWeight = overwriteStyles.fontWeight || w.config.xaxis.labels.style.fontWeight;
+ var cssClass = overwriteStyles.cssClass || w.config.xaxis.labels.style.cssClass;
+ var colWidth; // initial x Position (keep adding column width in the loop)
+
+ var xPos = w.globals.padHorizontal;
+ var labelsLen = labels.length;
+ /**
+ * labelsLen can be different (whether you are drawing x-axis labels or x-axis group labels)
+ * hence, we introduce dataPoints to be consistent.
+ * Also, in datetime/numeric xaxis, dataPoints can be misleading, so we resort to labelsLen for such xaxis type
+ */
+
+ var dataPoints = w.config.xaxis.type === 'category' ? w.globals.dataPoints : labelsLen; // when all series are collapsed, fixes #3381
+
+ if (dataPoints === 0 && labelsLen > dataPoints) dataPoints = labelsLen;
+
+ if (isXNumeric) {
+ var len = dataPoints > 1 ? dataPoints - 1 : dataPoints;
+ colWidth = w.globals.gridWidth / Math.min(len, labelsLen - 1);
+ xPos = xPos + colWidthCb(0, colWidth) / 2 + w.config.xaxis.labels.offsetX;
+ } else {
+ colWidth = w.globals.gridWidth / dataPoints;
+ xPos = xPos + colWidthCb(0, colWidth) + w.config.xaxis.labels.offsetX;
+ }
+
+ var _loop = function _loop(i) {
+ var x = xPos - colWidthCb(i, colWidth) / 2 + w.config.xaxis.labels.offsetX;
+
+ if (i === 0 && labelsLen === 1 && colWidth / 2 === xPos && dataPoints === 1) {
+ // single datapoint
+ x = w.globals.gridWidth / 2;
+ }
+
+ var label = _this.axesUtils.getLabel(labels, w.globals.timescaleLabels, x, i, drawnLabels, xaxisFontSize, isLeafGroup);
+
+ var offsetYCorrection = 28;
+
+ if (w.globals.rotateXLabels && isLeafGroup) {
+ offsetYCorrection = 22;
+ }
+
+ if (w.config.xaxis.title.text && w.config.xaxis.position === 'top') {
+ offsetYCorrection += parseFloat(w.config.xaxis.title.style.fontSize) + 2;
+ }
+
+ if (!isLeafGroup) {
+ offsetYCorrection = offsetYCorrection + parseFloat(xaxisFontSize) + (w.globals.xAxisLabelsHeight - w.globals.xAxisGroupLabelsHeight) + (w.globals.rotateXLabels ? 10 : 0);
+ }
+
+ var isCategoryTickAmounts = typeof w.config.xaxis.tickAmount !== 'undefined' && w.config.xaxis.tickAmount !== 'dataPoints' && w.config.xaxis.type !== 'datetime';
+
+ if (isCategoryTickAmounts) {
+ label = _this.axesUtils.checkLabelBasedOnTickamount(i, label, labelsLen);
+ } else {
+ label = _this.axesUtils.checkForOverflowingLabels(i, label, labelsLen, drawnLabels, drawnLabelsRects);
+ }
+
+ var getCatForeColor = function getCatForeColor() {
+ return isLeafGroup && w.config.xaxis.convertedCatToNumeric ? xaxisForeColors[w.globals.minX + i - 1] : xaxisForeColors[i];
+ };
+
+ if (w.config.xaxis.labels.show) {
+ var elText = graphics.drawText({
+ x: label.x,
+ y: _this.offY + w.config.xaxis.labels.offsetY + offsetYCorrection - (w.config.xaxis.position === 'top' ? w.globals.xAxisHeight + w.config.xaxis.axisTicks.height - 2 : 0),
+ text: label.text,
+ textAnchor: 'middle',
+ fontWeight: label.isBold ? 600 : fontWeight,
+ fontSize: xaxisFontSize,
+ fontFamily: xaxisFontFamily,
+ foreColor: Array.isArray(xaxisForeColors) ? getCatForeColor() : xaxisForeColors,
+ isPlainText: false,
+ cssClass: (isLeafGroup ? 'apexcharts-xaxis-label ' : 'apexcharts-xaxis-group-label ') + cssClass
+ });
+ elXaxisTexts.add(elText);
+ elText.on('click', function (e) {
+ if (typeof w.config.chart.events.xAxisLabelClick === 'function') {
+ var opts = Object.assign({}, w, {
+ labelIndex: i
+ });
+ w.config.chart.events.xAxisLabelClick(e, _this.ctx, opts);
+ }
+ });
+
+ if (isLeafGroup) {
+ var elTooltipTitle = document.createElementNS(w.globals.SVGNS, 'title');
+ elTooltipTitle.textContent = Array.isArray(label.text) ? label.text.join(' ') : label.text;
+ elText.node.appendChild(elTooltipTitle);
+
+ if (label.text !== '') {
+ drawnLabels.push(label.text);
+ drawnLabelsRects.push(label);
+ }
+ }
+ }
+
+ if (i < labelsLen - 1) {
+ xPos = xPos + colWidthCb(i + 1, colWidth);
+ }
+ };
+
+ for (var i = 0; i <= labelsLen - 1; i++) {
+ _loop(i);
+ }
+ } // this actually becomes the vertical axis (for bar charts)
+
+ }, {
+ key: "drawXaxisInversed",
+ value: function drawXaxisInversed(realIndex) {
+ var _this2 = this;
+
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var translateYAxisX = w.config.yaxis[0].opposite ? w.globals.translateYAxisX[realIndex] : 0;
+ var elYaxis = graphics.group({
+ class: 'apexcharts-yaxis apexcharts-xaxis-inversed',
+ rel: realIndex
+ });
+ var elYaxisTexts = graphics.group({
+ class: 'apexcharts-yaxis-texts-g apexcharts-xaxis-inversed-texts-g',
+ transform: 'translate(' + translateYAxisX + ', 0)'
+ });
+ elYaxis.add(elYaxisTexts);
+ var colHeight; // initial x Position (keep adding column width in the loop)
+
+ var yPos;
+ var labels = [];
+
+ if (w.config.yaxis[realIndex].show) {
+ for (var i = 0; i < this.xaxisLabels.length; i++) {
+ labels.push(this.xaxisLabels[i]);
+ }
+ }
+
+ colHeight = w.globals.gridHeight / labels.length;
+ yPos = -(colHeight / 2.2);
+ var lbFormatter = w.globals.yLabelFormatters[0];
+ var ylabels = w.config.yaxis[0].labels;
+
+ if (ylabels.show) {
+ var _loop2 = function _loop2(_i2) {
+ var label = typeof labels[_i2] === 'undefined' ? '' : labels[_i2];
+ label = lbFormatter(label, {
+ seriesIndex: realIndex,
+ dataPointIndex: _i2,
+ w: w
+ });
+
+ var yColors = _this2.axesUtils.getYAxisForeColor(ylabels.style.colors, realIndex);
+
+ var getForeColor = function getForeColor() {
+ return Array.isArray(yColors) ? yColors[_i2] : yColors;
+ };
+
+ var multiY = 0;
+
+ if (Array.isArray(label)) {
+ multiY = label.length / 2 * parseInt(ylabels.style.fontSize, 10);
+ }
+
+ var offsetX = ylabels.offsetX - 15;
+ var textAnchor = 'end';
+
+ if (_this2.yaxis.opposite) {
+ textAnchor = 'start';
+ }
+
+ if (w.config.yaxis[0].labels.align === 'left') {
+ offsetX = ylabels.offsetX;
+ textAnchor = 'start';
+ } else if (w.config.yaxis[0].labels.align === 'center') {
+ offsetX = ylabels.offsetX;
+ textAnchor = 'middle';
+ } else if (w.config.yaxis[0].labels.align === 'right') {
+ textAnchor = 'end';
+ }
+
+ var elLabel = graphics.drawText({
+ x: offsetX,
+ y: yPos + colHeight + ylabels.offsetY - multiY,
+ text: label,
+ textAnchor: textAnchor,
+ foreColor: getForeColor(),
+ fontSize: ylabels.style.fontSize,
+ fontFamily: ylabels.style.fontFamily,
+ fontWeight: ylabels.style.fontWeight,
+ isPlainText: false,
+ cssClass: 'apexcharts-yaxis-label ' + ylabels.style.cssClass,
+ maxWidth: ylabels.maxWidth
+ });
+ elYaxisTexts.add(elLabel);
+ elLabel.on('click', function (e) {
+ if (typeof w.config.chart.events.xAxisLabelClick === 'function') {
+ var opts = Object.assign({}, w, {
+ labelIndex: _i2
+ });
+ w.config.chart.events.xAxisLabelClick(e, _this2.ctx, opts);
+ }
+ });
+ var elTooltipTitle = document.createElementNS(w.globals.SVGNS, 'title');
+ elTooltipTitle.textContent = Array.isArray(label) ? label.join(' ') : label;
+ elLabel.node.appendChild(elTooltipTitle);
+
+ if (w.config.yaxis[realIndex].labels.rotate !== 0) {
+ var labelRotatingCenter = graphics.rotateAroundCenter(elLabel.node);
+ elLabel.node.setAttribute('transform', "rotate(".concat(w.config.yaxis[realIndex].labels.rotate, " 0 ").concat(labelRotatingCenter.y, ")"));
+ }
+
+ yPos = yPos + colHeight;
+ };
+
+ for (var _i2 = 0; _i2 <= labels.length - 1; _i2++) {
+ _loop2(_i2);
+ }
+ }
+
+ if (w.config.yaxis[0].title.text !== undefined) {
+ var elXaxisTitle = graphics.group({
+ class: 'apexcharts-yaxis-title apexcharts-xaxis-title-inversed',
+ transform: 'translate(' + translateYAxisX + ', 0)'
+ });
+ var elXAxisTitleText = graphics.drawText({
+ x: w.config.yaxis[0].title.offsetX,
+ y: w.globals.gridHeight / 2 + w.config.yaxis[0].title.offsetY,
+ text: w.config.yaxis[0].title.text,
+ textAnchor: 'middle',
+ foreColor: w.config.yaxis[0].title.style.color,
+ fontSize: w.config.yaxis[0].title.style.fontSize,
+ fontWeight: w.config.yaxis[0].title.style.fontWeight,
+ fontFamily: w.config.yaxis[0].title.style.fontFamily,
+ cssClass: 'apexcharts-yaxis-title-text ' + w.config.yaxis[0].title.style.cssClass
+ });
+ elXaxisTitle.add(elXAxisTitleText);
+ elYaxis.add(elXaxisTitle);
+ }
+
+ var offX = 0;
+
+ if (this.isCategoryBarHorizontal && w.config.yaxis[0].opposite) {
+ offX = w.globals.gridWidth;
+ }
+
+ var axisBorder = w.config.xaxis.axisBorder;
+
+ if (axisBorder.show) {
+ var elVerticalLine = graphics.drawLine(w.globals.padHorizontal + axisBorder.offsetX + offX, 1 + axisBorder.offsetY, w.globals.padHorizontal + axisBorder.offsetX + offX, w.globals.gridHeight + axisBorder.offsetY, axisBorder.color, 0);
+
+ if (this.elgrid && this.elgrid.elGridBorders && w.config.grid.show) {
+ this.elgrid.elGridBorders.add(elVerticalLine);
+ } else {
+ elYaxis.add(elVerticalLine);
+ }
+ }
+
+ if (w.config.yaxis[0].axisTicks.show) {
+ this.axesUtils.drawYAxisTicks(offX, labels.length, w.config.yaxis[0].axisBorder, w.config.yaxis[0].axisTicks, 0, colHeight, elYaxis);
+ }
+
+ return elYaxis;
+ }
+ }, {
+ key: "drawXaxisTicks",
+ value: function drawXaxisTicks(x1, y2, appendToElement) {
+ var w = this.w;
+ var x2 = x1;
+ if (x1 < 0 || x1 - 2 > w.globals.gridWidth) return;
+ var y1 = this.offY + w.config.xaxis.axisTicks.offsetY;
+ y2 = y2 + y1 + w.config.xaxis.axisTicks.height;
+
+ if (w.config.xaxis.position === 'top') {
+ y2 = y1 - w.config.xaxis.axisTicks.height;
+ }
+
+ if (w.config.xaxis.axisTicks.show) {
+ var graphics = new Graphics(this.ctx);
+ var line = graphics.drawLine(x1 + w.config.xaxis.axisTicks.offsetX, y1 + w.config.xaxis.offsetY, x2 + w.config.xaxis.axisTicks.offsetX, y2 + w.config.xaxis.offsetY, w.config.xaxis.axisTicks.color); // we are not returning anything, but appending directly to the element passed in param
+
+ appendToElement.add(line);
+ line.node.classList.add('apexcharts-xaxis-tick');
+ }
+ }
+ }, {
+ key: "getXAxisTicksPositions",
+ value: function getXAxisTicksPositions() {
+ var w = this.w;
+ var xAxisTicksPositions = [];
+ var xCount = this.xaxisLabels.length;
+ var x1 = w.globals.padHorizontal;
+
+ if (w.globals.timescaleLabels.length > 0) {
+ for (var i = 0; i < xCount; i++) {
+ x1 = this.xaxisLabels[i].position;
+ xAxisTicksPositions.push(x1);
+ }
+ } else {
+ var xCountForCategoryCharts = xCount;
+
+ for (var _i3 = 0; _i3 < xCountForCategoryCharts; _i3++) {
+ var x1Count = xCountForCategoryCharts;
+
+ if (w.globals.isXNumeric && w.config.chart.type !== 'bar') {
+ x1Count -= 1;
+ }
+
+ x1 = x1 + w.globals.gridWidth / x1Count;
+ xAxisTicksPositions.push(x1);
+ }
+ }
+
+ return xAxisTicksPositions;
+ } // to rotate x-axis labels or to put ... for longer text in xaxis
+
+ }, {
+ key: "xAxisLabelCorrections",
+ value: function xAxisLabelCorrections() {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var xAxis = w.globals.dom.baseEl.querySelector('.apexcharts-xaxis-texts-g');
+ var xAxisTexts = w.globals.dom.baseEl.querySelectorAll('.apexcharts-xaxis-texts-g text:not(.apexcharts-xaxis-group-label)');
+ var yAxisTextsInversed = w.globals.dom.baseEl.querySelectorAll('.apexcharts-yaxis-inversed text');
+ var xAxisTextsInversed = w.globals.dom.baseEl.querySelectorAll('.apexcharts-xaxis-inversed-texts-g text tspan');
+
+ if (w.globals.rotateXLabels || w.config.xaxis.labels.rotateAlways) {
+ for (var xat = 0; xat < xAxisTexts.length; xat++) {
+ var textRotatingCenter = graphics.rotateAroundCenter(xAxisTexts[xat]);
+ textRotatingCenter.y = textRotatingCenter.y - 1; // + tickWidth/4;
+
+ textRotatingCenter.x = textRotatingCenter.x + 1;
+ xAxisTexts[xat].setAttribute('transform', "rotate(".concat(w.config.xaxis.labels.rotate, " ").concat(textRotatingCenter.x, " ").concat(textRotatingCenter.y, ")"));
+ xAxisTexts[xat].setAttribute('text-anchor', "end");
+ var offsetHeight = 10;
+ xAxis.setAttribute('transform', "translate(0, ".concat(-offsetHeight, ")"));
+ var tSpan = xAxisTexts[xat].childNodes;
+
+ if (w.config.xaxis.labels.trim) {
+ Array.prototype.forEach.call(tSpan, function (ts) {
+ graphics.placeTextWithEllipsis(ts, ts.textContent, w.globals.xAxisLabelsHeight - (w.config.legend.position === 'bottom' ? 20 : 10));
+ });
+ }
+ }
+ } else {
+ (function () {
+ var width = w.globals.gridWidth / (w.globals.labels.length + 1);
+
+ for (var _xat = 0; _xat < xAxisTexts.length; _xat++) {
+ var _tSpan = xAxisTexts[_xat].childNodes;
+
+ if (w.config.xaxis.labels.trim && w.config.xaxis.type !== 'datetime') {
+ Array.prototype.forEach.call(_tSpan, function (ts) {
+ graphics.placeTextWithEllipsis(ts, ts.textContent, width);
+ });
+ }
+ }
+ })();
+ }
+
+ if (yAxisTextsInversed.length > 0) {
+ // truncate rotated y axis in bar chart (x axis)
+ var firstLabelPosX = yAxisTextsInversed[yAxisTextsInversed.length - 1].getBBox();
+ var lastLabelPosX = yAxisTextsInversed[0].getBBox();
+
+ if (firstLabelPosX.x < -20) {
+ yAxisTextsInversed[yAxisTextsInversed.length - 1].parentNode.removeChild(yAxisTextsInversed[yAxisTextsInversed.length - 1]);
+ }
+
+ if (lastLabelPosX.x + lastLabelPosX.width > w.globals.gridWidth && !w.globals.isBarHorizontal) {
+ yAxisTextsInversed[0].parentNode.removeChild(yAxisTextsInversed[0]);
+ } // truncate rotated x axis in bar chart (y axis)
+
+
+ for (var _xat2 = 0; _xat2 < xAxisTextsInversed.length; _xat2++) {
+ graphics.placeTextWithEllipsis(xAxisTextsInversed[_xat2], xAxisTextsInversed[_xat2].textContent, w.config.yaxis[0].labels.maxWidth - (w.config.yaxis[0].title.text ? parseFloat(w.config.yaxis[0].title.style.fontSize) * 2 : 0) - 15);
+ }
+ }
+ } // renderXAxisBands() {
+ // let w = this.w;
+ // let plotBand = document.createElementNS(w.globals.SVGNS, 'rect')
+ // w.globals.dom.elGraphical.add(plotBand)
+ // }
+
+ }]);
+
+ return XAxis;
+ }();
+
+ /**
+ * ApexCharts Grid Class for drawing Cartesian Grid.
+ *
+ * @module Grid
+ **/
+
+ var Grid = /*#__PURE__*/function () {
+ function Grid(ctx) {
+ _classCallCheck(this, Grid);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ var w = this.w;
+ this.xaxisLabels = w.globals.labels.slice();
+ this.axesUtils = new AxesUtils(ctx);
+ this.isRangeBar = w.globals.seriesRange.length && w.globals.isBarHorizontal;
+
+ if (w.globals.timescaleLabels.length > 0) {
+ // timescaleLabels labels are there
+ this.xaxisLabels = w.globals.timescaleLabels.slice();
+ }
+ } // when using sparklines or when showing no grid, we need to have a grid area which is reused at many places for other calculations as well
+
+
+ _createClass(Grid, [{
+ key: "drawGridArea",
+ value: function drawGridArea() {
+ var elGrid = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+
+ if (elGrid === null) {
+ elGrid = graphics.group({
+ class: 'apexcharts-grid'
+ });
+ }
+
+ var elVerticalLine = graphics.drawLine(w.globals.padHorizontal, 1, w.globals.padHorizontal, w.globals.gridHeight, 'transparent');
+ var elHorzLine = graphics.drawLine(w.globals.padHorizontal, w.globals.gridHeight, w.globals.gridWidth, w.globals.gridHeight, 'transparent');
+ elGrid.add(elHorzLine);
+ elGrid.add(elVerticalLine);
+ return elGrid;
+ }
+ }, {
+ key: "drawGrid",
+ value: function drawGrid() {
+ var gl = this.w.globals;
+ var elgrid = null;
+
+ if (gl.axisCharts) {
+ // grid is drawn after xaxis and yaxis are drawn
+ elgrid = this.renderGrid();
+ this.drawGridArea(elgrid.el);
+ }
+
+ return elgrid;
+ } // This mask will clip off overflowing graphics from the drawable area
+
+ }, {
+ key: "createGridMask",
+ value: function createGridMask() {
+ var w = this.w;
+ var gl = w.globals;
+ var graphics = new Graphics(this.ctx);
+ var strokeSize = Array.isArray(w.config.stroke.width) ? 0 : w.config.stroke.width;
+
+ if (Array.isArray(w.config.stroke.width)) {
+ var strokeMaxSize = 0;
+ w.config.stroke.width.forEach(function (m) {
+ strokeMaxSize = Math.max(strokeMaxSize, m);
+ });
+ strokeSize = strokeMaxSize;
+ }
+
+ gl.dom.elGridRectMask = document.createElementNS(gl.SVGNS, 'clipPath');
+ gl.dom.elGridRectMask.setAttribute('id', "gridRectMask".concat(gl.cuid));
+ gl.dom.elGridRectMarkerMask = document.createElementNS(gl.SVGNS, 'clipPath');
+ gl.dom.elGridRectMarkerMask.setAttribute('id', "gridRectMarkerMask".concat(gl.cuid));
+ gl.dom.elForecastMask = document.createElementNS(gl.SVGNS, 'clipPath');
+ gl.dom.elForecastMask.setAttribute('id', "forecastMask".concat(gl.cuid));
+ gl.dom.elNonForecastMask = document.createElementNS(gl.SVGNS, 'clipPath');
+ gl.dom.elNonForecastMask.setAttribute('id', "nonForecastMask".concat(gl.cuid)); // let barHalfWidth = 0
+
+ var type = w.config.chart.type;
+ var hasBar = type === 'bar' || type === 'rangeBar' || type === 'candlestick' || type === 'boxPlot' || w.globals.comboBarCount > 0;
+ var barWidthLeft = 0;
+ var barWidthRight = 0;
+
+ if (hasBar && w.globals.isXNumeric && !w.globals.isBarHorizontal) {
+ barWidthLeft = w.config.grid.padding.left;
+ barWidthRight = w.config.grid.padding.right;
+
+ if (gl.barPadForNumericAxis > barWidthLeft) {
+ barWidthLeft = gl.barPadForNumericAxis;
+ barWidthRight = gl.barPadForNumericAxis;
+ }
+ }
+
+ gl.dom.elGridRect = graphics.drawRect(-strokeSize / 2 - barWidthLeft - 2, -strokeSize / 2 - 2, gl.gridWidth + strokeSize + barWidthRight + barWidthLeft + 4, gl.gridHeight + strokeSize + 4, 0, '#fff');
+ var markerSize = w.globals.markers.largestSize + 1;
+ gl.dom.elGridRectMarker = graphics.drawRect(-markerSize * 2, -markerSize * 2, gl.gridWidth + markerSize * 4, gl.gridHeight + markerSize * 4, 0, '#fff');
+ gl.dom.elGridRectMask.appendChild(gl.dom.elGridRect.node);
+ gl.dom.elGridRectMarkerMask.appendChild(gl.dom.elGridRectMarker.node);
+ var defs = gl.dom.baseEl.querySelector('defs');
+ defs.appendChild(gl.dom.elGridRectMask);
+ defs.appendChild(gl.dom.elForecastMask);
+ defs.appendChild(gl.dom.elNonForecastMask);
+ defs.appendChild(gl.dom.elGridRectMarkerMask);
+ }
+ }, {
+ key: "_drawGridLines",
+ value: function _drawGridLines(_ref) {
+ var i = _ref.i,
+ x1 = _ref.x1,
+ y1 = _ref.y1,
+ x2 = _ref.x2,
+ y2 = _ref.y2,
+ xCount = _ref.xCount,
+ parent = _ref.parent;
+ var w = this.w;
+
+ var shouldDraw = function shouldDraw() {
+ if (i === 0 && w.globals.skipFirstTimelinelabel) {
+ return false;
+ }
+
+ if (i === xCount - 1 && w.globals.skipLastTimelinelabel && !w.config.xaxis.labels.formatter) {
+ return false;
+ }
+
+ if (w.config.chart.type === 'radar') {
+ return false;
+ }
+
+ return true;
+ };
+
+ if (shouldDraw()) {
+ if (w.config.grid.xaxis.lines.show) {
+ this._drawGridLine({
+ i: i,
+ x1: x1,
+ y1: y1,
+ x2: x2,
+ y2: y2,
+ xCount: xCount,
+ parent: parent
+ });
+ }
+
+ var y_2 = 0;
+
+ if (w.globals.hasXaxisGroups && w.config.xaxis.tickPlacement === 'between') {
+ var groups = w.globals.groups;
+
+ if (groups) {
+ var gacc = 0;
+
+ for (var gi = 0; gacc < i && gi < groups.length; gi++) {
+ gacc += groups[gi].cols;
+ }
+
+ if (gacc === i) {
+ y_2 = w.globals.xAxisLabelsHeight * 0.6;
+ }
+ }
+ }
+
+ var xAxis = new XAxis(this.ctx);
+ xAxis.drawXaxisTicks(x1, y_2, w.globals.dom.elGraphical);
+ }
+ }
+ }, {
+ key: "_drawGridLine",
+ value: function _drawGridLine(_ref2) {
+ var i = _ref2.i,
+ x1 = _ref2.x1,
+ y1 = _ref2.y1,
+ x2 = _ref2.x2,
+ y2 = _ref2.y2,
+ xCount = _ref2.xCount,
+ parent = _ref2.parent;
+ var w = this.w;
+ var excludeBorders = false;
+ var isHorzLine = parent.node.classList.contains('apexcharts-gridlines-horizontal');
+ var strokeDashArray = w.config.grid.strokeDashArray;
+ var offX = w.globals.barPadForNumericAxis;
+
+ if (y1 === 0 && y2 === 0 || x1 === 0 && x2 === 0) {
+ excludeBorders = true;
+ }
+
+ if (y1 === w.globals.gridHeight && y2 === w.globals.gridHeight) {
+ excludeBorders = true;
+ }
+
+ if (w.globals.isBarHorizontal && (i === 0 || i === xCount - 1)) {
+ excludeBorders = true;
+ }
+
+ var graphics = new Graphics(this);
+ var line = graphics.drawLine(x1 - (isHorzLine ? offX : 0), y1, x2 + (isHorzLine ? offX : 0), y2, w.config.grid.borderColor, strokeDashArray);
+ line.node.classList.add('apexcharts-gridline');
+
+ if (excludeBorders && w.config.grid.show) {
+ this.elGridBorders.add(line);
+ } else {
+ parent.add(line);
+ }
+ }
+ }, {
+ key: "_drawGridBandRect",
+ value: function _drawGridBandRect(_ref3) {
+ var c = _ref3.c,
+ x1 = _ref3.x1,
+ y1 = _ref3.y1,
+ x2 = _ref3.x2,
+ y2 = _ref3.y2,
+ type = _ref3.type;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var offX = w.globals.barPadForNumericAxis;
+ if (type === 'column' && w.config.xaxis.type === 'datetime') return;
+ var color = w.config.grid[type].colors[c];
+ var rect = graphics.drawRect(x1 - (type === 'row' ? offX : 0), y1, x2 + (type === 'row' ? offX * 2 : 0), y2, 0, color, w.config.grid[type].opacity);
+ this.elg.add(rect);
+ rect.attr('clip-path', "url(#gridRectMask".concat(w.globals.cuid, ")"));
+ rect.node.classList.add("apexcharts-grid-".concat(type));
+ }
+ }, {
+ key: "_drawXYLines",
+ value: function _drawXYLines(_ref4) {
+ var _this = this;
+
+ var xCount = _ref4.xCount,
+ tickAmount = _ref4.tickAmount;
+ var w = this.w;
+
+ var datetimeLines = function datetimeLines(_ref5) {
+ var xC = _ref5.xC,
+ x1 = _ref5.x1,
+ y1 = _ref5.y1,
+ x2 = _ref5.x2,
+ y2 = _ref5.y2;
+
+ for (var i = 0; i < xC; i++) {
+ x1 = _this.xaxisLabels[i].position;
+ x2 = _this.xaxisLabels[i].position;
+
+ _this._drawGridLines({
+ i: i,
+ x1: x1,
+ y1: y1,
+ x2: x2,
+ y2: y2,
+ xCount: xCount,
+ parent: _this.elgridLinesV
+ });
+ }
+ };
+
+ var categoryLines = function categoryLines(_ref6) {
+ var xC = _ref6.xC,
+ x1 = _ref6.x1,
+ y1 = _ref6.y1,
+ x2 = _ref6.x2,
+ y2 = _ref6.y2;
+
+ for (var i = 0; i < xC + (w.globals.isXNumeric ? 0 : 1); i++) {
+ if (i === 0 && xC === 1 && w.globals.dataPoints === 1) {
+ // single datapoint
+ x1 = w.globals.gridWidth / 2;
+ x2 = x1;
+ }
+
+ _this._drawGridLines({
+ i: i,
+ x1: x1,
+ y1: y1,
+ x2: x2,
+ y2: y2,
+ xCount: xCount,
+ parent: _this.elgridLinesV
+ });
+
+ x1 = x1 + w.globals.gridWidth / (w.globals.isXNumeric ? xC - 1 : xC);
+ x2 = x1;
+ }
+ }; // draw vertical lines
+
+
+ if (w.config.grid.xaxis.lines.show || w.config.xaxis.axisTicks.show) {
+ var x1 = w.globals.padHorizontal;
+ var y1 = 0;
+ var x2;
+ var y2 = w.globals.gridHeight;
+
+ if (w.globals.timescaleLabels.length) {
+ datetimeLines({
+ xC: xCount,
+ x1: x1,
+ y1: y1,
+ x2: x2,
+ y2: y2
+ });
+ } else {
+ if (w.globals.isXNumeric) {
+ xCount = w.globals.xAxisScale.result.length;
+ }
+
+ categoryLines({
+ xC: xCount,
+ x1: x1,
+ y1: y1,
+ x2: x2,
+ y2: y2
+ });
+ }
+ } // draw horizontal lines
+
+
+ if (w.config.grid.yaxis.lines.show) {
+ var _x = 0;
+ var _y = 0;
+ var _y2 = 0;
+ var _x2 = w.globals.gridWidth;
+ var tA = tickAmount + 1;
+
+ if (this.isRangeBar) {
+ tA = w.globals.labels.length;
+ }
+
+ for (var i = 0; i < tA + (this.isRangeBar ? 1 : 0); i++) {
+ this._drawGridLine({
+ i: i,
+ xCount: tA + (this.isRangeBar ? 1 : 0),
+ x1: _x,
+ y1: _y,
+ x2: _x2,
+ y2: _y2,
+ parent: this.elgridLinesH
+ });
+
+ _y = _y + w.globals.gridHeight / (this.isRangeBar ? tA : tickAmount);
+ _y2 = _y;
+ }
+ }
+ }
+ }, {
+ key: "_drawInvertedXYLines",
+ value: function _drawInvertedXYLines(_ref7) {
+ var xCount = _ref7.xCount;
+ var w = this.w; // draw vertical lines
+
+ if (w.config.grid.xaxis.lines.show || w.config.xaxis.axisTicks.show) {
+ var x1 = w.globals.padHorizontal;
+ var y1 = 0;
+ var x2;
+ var y2 = w.globals.gridHeight;
+
+ for (var i = 0; i < xCount + 1; i++) {
+ if (w.config.grid.xaxis.lines.show) {
+ this._drawGridLine({
+ i: i,
+ xCount: xCount + 1,
+ x1: x1,
+ y1: y1,
+ x2: x2,
+ y2: y2,
+ parent: this.elgridLinesV
+ });
+ }
+
+ var xAxis = new XAxis(this.ctx);
+ xAxis.drawXaxisTicks(x1, 0, w.globals.dom.elGraphical);
+ x1 = x1 + w.globals.gridWidth / xCount;
+ x2 = x1;
+ }
+ } // draw horizontal lines
+
+
+ if (w.config.grid.yaxis.lines.show) {
+ var _x3 = 0;
+ var _y3 = 0;
+ var _y4 = 0;
+ var _x4 = w.globals.gridWidth;
+
+ for (var _i = 0; _i < w.globals.dataPoints + 1; _i++) {
+ this._drawGridLine({
+ i: _i,
+ xCount: w.globals.dataPoints + 1,
+ x1: _x3,
+ y1: _y3,
+ x2: _x4,
+ y2: _y4,
+ parent: this.elgridLinesH
+ });
+
+ _y3 = _y3 + w.globals.gridHeight / w.globals.dataPoints;
+ _y4 = _y3;
+ }
+ }
+ } // actual grid rendering
+
+ }, {
+ key: "renderGrid",
+ value: function renderGrid() {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ this.elg = graphics.group({
+ class: 'apexcharts-grid'
+ });
+ this.elgridLinesH = graphics.group({
+ class: 'apexcharts-gridlines-horizontal'
+ });
+ this.elgridLinesV = graphics.group({
+ class: 'apexcharts-gridlines-vertical'
+ });
+ this.elGridBorders = graphics.group({
+ class: 'apexcharts-grid-borders'
+ });
+ this.elg.add(this.elgridLinesH);
+ this.elg.add(this.elgridLinesV);
+
+ if (!w.config.grid.show) {
+ this.elgridLinesV.hide();
+ this.elgridLinesH.hide();
+ this.elGridBorders.hide();
+ } // Draw the grid using ticks from the first unhidden Yaxis,
+ // or yaxis[0] is all hidden.
+
+
+ var gridAxisIndex = 0;
+
+ while (gridAxisIndex < w.globals.seriesYAxisMap.length && w.globals.ignoreYAxisIndexes.indexOf(gridAxisIndex) !== -1) {
+ gridAxisIndex++;
+ }
+
+ if (gridAxisIndex === w.globals.seriesYAxisMap.length) {
+ gridAxisIndex = 0;
+ }
+
+ var yTickAmount = w.globals.yAxisScale[gridAxisIndex].result.length - 1;
+ var xCount;
+
+ if (!w.globals.isBarHorizontal || this.isRangeBar) {
+ xCount = this.xaxisLabels.length;
+
+ if (this.isRangeBar) {
+ var _w$globals$yAxisScale, _w$globals$yAxisScale2, _w$globals$yAxisScale3;
+
+ xCount--;
+ yTickAmount = w.globals.labels.length;
+
+ if (w.config.xaxis.tickAmount && w.config.xaxis.labels.formatter) {
+ xCount = w.config.xaxis.tickAmount;
+ }
+
+ if (((_w$globals$yAxisScale = w.globals.yAxisScale) === null || _w$globals$yAxisScale === void 0 ? void 0 : (_w$globals$yAxisScale2 = _w$globals$yAxisScale[gridAxisIndex]) === null || _w$globals$yAxisScale2 === void 0 ? void 0 : (_w$globals$yAxisScale3 = _w$globals$yAxisScale2.result) === null || _w$globals$yAxisScale3 === void 0 ? void 0 : _w$globals$yAxisScale3.length) > 0 && w.config.xaxis.type !== 'datetime') {
+ xCount = w.globals.yAxisScale[gridAxisIndex].result.length - 1;
+ }
+ }
+
+ this._drawXYLines({
+ xCount: xCount,
+ tickAmount: yTickAmount
+ });
+ } else {
+ xCount = yTickAmount; // for horizontal bar chart, get the xaxis tickamount
+
+ yTickAmount = w.globals.xTickAmount;
+
+ this._drawInvertedXYLines({
+ xCount: xCount,
+ tickAmount: yTickAmount
+ });
+ }
+
+ this.drawGridBands(xCount, yTickAmount);
+ return {
+ el: this.elg,
+ elGridBorders: this.elGridBorders,
+ xAxisTickWidth: w.globals.gridWidth / xCount
+ };
+ }
+ }, {
+ key: "drawGridBands",
+ value: function drawGridBands(xCount, tickAmount) {
+ var w = this.w; // rows background bands
+
+ if (w.config.grid.row.colors !== undefined && w.config.grid.row.colors.length > 0) {
+ var x1 = 0;
+ var y1 = 0;
+ var y2 = w.globals.gridHeight / tickAmount;
+ var x2 = w.globals.gridWidth;
+
+ for (var i = 0, c = 0; i < tickAmount; i++, c++) {
+ if (c >= w.config.grid.row.colors.length) {
+ c = 0;
+ }
+
+ this._drawGridBandRect({
+ c: c,
+ x1: x1,
+ y1: y1,
+ x2: x2,
+ y2: y2,
+ type: 'row'
+ });
+
+ y1 = y1 + w.globals.gridHeight / tickAmount;
+ }
+ } // columns background bands
+
+
+ if (w.config.grid.column.colors !== undefined && w.config.grid.column.colors.length > 0) {
+ var xc = !w.globals.isBarHorizontal && w.config.xaxis.tickPlacement === 'on' && (w.config.xaxis.type === 'category' || w.config.xaxis.convertedCatToNumeric) ? xCount - 1 : xCount;
+ var _x5 = w.globals.padHorizontal;
+ var _y5 = 0;
+
+ var _x6 = w.globals.padHorizontal + w.globals.gridWidth / xc;
+
+ var _y6 = w.globals.gridHeight;
+
+ for (var _i2 = 0, _c = 0; _i2 < xCount; _i2++, _c++) {
+ if (_c >= w.config.grid.column.colors.length) {
+ _c = 0;
+ }
+
+ this._drawGridBandRect({
+ c: _c,
+ x1: _x5,
+ y1: _y5,
+ x2: _x6,
+ y2: _y6,
+ type: 'column'
+ });
+
+ _x5 = _x5 + w.globals.gridWidth / xc;
+ }
+ }
+ }
+ }]);
+
+ return Grid;
+ }();
+
+ var Scales = /*#__PURE__*/function () {
+ function Scales(ctx) {
+ _classCallCheck(this, Scales);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ } // http://stackoverflow.com/questions/326679/choosing-an-attractive-linear-scale-for-a-graphs-y-axis
+ // This routine creates the Y axis values for a graph.
+
+
+ _createClass(Scales, [{
+ key: "niceScale",
+ value: function niceScale(yMin, yMax) {
+ var index = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
+ // Calculate Min amd Max graphical labels and graph
+ // increments.
+ //
+ // Output will be an array of the Y axis values that
+ // encompass the Y values.
+ var jsPrecision = 1e-11; // JS precision errors
+
+ var w = this.w;
+ var gl = w.globals;
+ var axisCnf;
+ var maxTicks;
+ var gotMin;
+ var gotMax;
+
+ if (gl.isBarHorizontal) {
+ axisCnf = w.config.xaxis; // The most ticks we can fit into the svg chart dimensions
+
+ maxTicks = Math.max((gl.svgWidth - 100) / 25, 2); // Guestimate
+ } else {
+ axisCnf = w.config.yaxis[index];
+ maxTicks = Math.max((gl.svgHeight - 100) / 15, 2);
+ }
+
+ gotMin = axisCnf.min !== undefined && axisCnf.min !== null;
+ gotMax = axisCnf.max !== undefined && axisCnf.min !== null;
+ var gotStepSize = axisCnf.stepSize !== undefined && axisCnf.stepSize !== null;
+ var gotTickAmount = axisCnf.tickAmount !== undefined && axisCnf.tickAmount !== null;
+ var ticks = gotTickAmount ? axisCnf.tickAmount : !axisCnf.forceNiceScale ? 10 : gl.niceScaleDefaultTicks[Math.min(Math.round(maxTicks / 2), gl.niceScaleDefaultTicks.length - 1)]; // In case we have a multi axis chart:
+ // Ensure subsequent series start with the same tickAmount as series[0],
+ // because the tick lines are drawn based on series[0]. This does not
+ // override user defined options for any series.
+
+ if (gl.isMultipleYAxis && !gotTickAmount && gl.multiAxisTickAmount > 0) {
+ ticks = gl.multiAxisTickAmount;
+ gotTickAmount = true;
+ }
+
+ if (ticks === 'dataPoints') {
+ ticks = gl.dataPoints - 1;
+ } else {
+ // Ensure ticks is an integer
+ ticks = Math.abs(Math.round(ticks));
+ }
+
+ if (yMin === Number.MIN_VALUE && yMax === 0 || !Utils$1.isNumber(yMin) && !Utils$1.isNumber(yMax) || yMin === Number.MIN_VALUE && yMax === -Number.MAX_VALUE) {
+ // when all values are 0
+ yMin = 0;
+ yMax = ticks;
+ gl.allSeriesCollapsed = false;
+ }
+
+ if (yMin > yMax) {
+ // if somehow due to some wrong config, user sent max less than min,
+ // adjust the min/max again
+ console.warn('axis.min cannot be greater than axis.max: swapping min and max');
+ var temp = yMax;
+ yMax = yMin;
+ yMin = temp;
+ } else if (yMin === yMax) {
+ // If yMin and yMax are identical, then
+ // adjust the yMin and yMax values to actually
+ // make a graph. Also avoids division by zero errors.
+ yMin = yMin === 0 ? 0 : yMin - 1; // choose an integer in case yValueDecimals=0
+
+ yMax = yMax === 0 ? 2 : yMax + 1; // choose an integer in case yValueDecimals=0
+ }
+
+ var result = [];
+
+ if (ticks < 1) {
+ ticks = 1;
+ }
+
+ var tiks = ticks; // Determine Range
+
+ var range = Math.abs(yMax - yMin);
+
+ if (axisCnf.forceNiceScale) {
+ // Snap min or max to zero if close
+ var proximityRatio = 0.15;
+
+ if (!gotMin && yMin > 0 && yMin / range < proximityRatio) {
+ yMin = 0;
+ gotMin = true;
+ }
+
+ if (!gotMax && yMax < 0 && -yMax / range < proximityRatio) {
+ yMax = 0;
+ gotMax = true;
+ }
+
+ range = Math.abs(yMax - yMin);
+ } // Calculate a pretty step value based on ticks
+ // Initial stepSize
+
+
+ var stepSize = range / tiks;
+ var niceStep = stepSize;
+ var mag = Math.floor(Math.log10(niceStep));
+ var magPow = Math.pow(10, mag); // ceil() is used below in conjunction with the values populating
+ // niceScaleAllowedMagMsd[][] to ensure that (niceStep * tiks)
+ // produces a range that doesn't clip data points after stretching
+ // the raw range out a little to match the prospective new range.
+
+ var magMsd = Math.ceil(niceStep / magPow); // See globals.js for info on what niceScaleAllowedMagMsd does
+
+ magMsd = gl.niceScaleAllowedMagMsd[gl.yValueDecimal === 0 ? 0 : 1][magMsd];
+ niceStep = magMsd * magPow; // Initial stepSize
+
+ stepSize = niceStep; // Get step value
+
+ if (gl.isBarHorizontal && axisCnf.stepSize && axisCnf.type !== 'datetime') {
+ stepSize = axisCnf.stepSize;
+ gotStepSize = true;
+ } else if (gotStepSize) {
+ stepSize = axisCnf.stepSize;
+ }
+
+ if (gotStepSize) {
+ if (axisCnf.forceNiceScale) {
+ // Check that given stepSize is sane with respect to the range.
+ //
+ // The user can, by setting forceNiceScale = true,
+ // define a stepSize that will be scaled to a useful value before
+ // it's checked for consistency.
+ //
+ // If, for example, the range = 4 and the user defined stepSize = 8
+ // (or 8000 or 0.0008, etc), then stepSize is inapplicable as
+ // it is. Reducing it to 0.8 will fit with 5 ticks.
+ //
+ var stepMag = Math.floor(Math.log10(stepSize));
+ stepSize *= Math.pow(10, mag - stepMag);
+ }
+ } // Start applying some rules
+
+
+ if (gotMin && gotMax) {
+ var crudeStep = range / tiks; // min and max (range) cannot be changed
+
+ if (gotTickAmount) {
+ if (gotStepSize) {
+ if (Utils$1.mod(range, stepSize) != 0) {
+ // stepSize conflicts with range
+ var gcdStep = Utils$1.getGCD(stepSize, crudeStep); // gcdStep is a multiple of range because crudeStep is a multiple.
+ // gcdStep is also a multiple of stepSize, so it partially honoured
+ // All three could be equal, which would be very nice
+ // if the computed stepSize generates too many ticks they will be
+ // reduced later, unless the number is prime, in which case,
+ // the chart will display all of them or just one (plus the X axis)
+ // depending on svg dimensions. Setting forceNiceScale: true will force
+ // the display of at least the default number of ticks.
+
+ if (crudeStep / gcdStep < 10) {
+ stepSize = gcdStep;
+ } else {
+ // stepSize conflicts and no reasonable adjustment, but must
+ // honour tickAmount
+ stepSize = crudeStep;
+ }
+ } else {
+ // stepSize fits
+ if (Utils$1.mod(stepSize, crudeStep) == 0) {
+ // crudeStep is a multiple of stepSize, or vice versa
+ // but we know that crudeStep will generate tickAmount ticks
+ stepSize = crudeStep;
+ } else {
+ // stepSize conflicts with tickAmount
+ // if the user is setting up a multi-axis chart and wants
+ // synced axis ticks then they should not define stepSize
+ // or ensure there is no conflict between any of their options
+ // on any axis.
+ crudeStep = stepSize; // De-prioritizing ticks from now on
+
+ gotTickAmount = false;
+ }
+ }
+ } else {
+ // no user stepSize, honour tickAmount
+ stepSize = crudeStep;
+ }
+ } else {
+ // default ticks in use, tiks can change
+ if (gotStepSize) {
+ if (Utils$1.mod(range, stepSize) == 0) {
+ // user stepSize fits
+ crudeStep = stepSize;
+ } else {
+ stepSize = crudeStep;
+ }
+ } else {
+ // no user stepSize
+ if (Utils$1.mod(range, stepSize) == 0) {
+ // generated nice stepSize fits
+ crudeStep = stepSize;
+ } else {
+ tiks = Math.ceil(range / stepSize);
+ crudeStep = range / tiks;
+
+ var _gcdStep = Utils$1.getGCD(range, stepSize);
+
+ if (range / _gcdStep < maxTicks) {
+ crudeStep = _gcdStep;
+ }
+
+ stepSize = crudeStep;
+ }
+ }
+ }
+
+ tiks = Math.round(range / stepSize);
+ } else {
+ // Snap range to ticks
+ if (!gotMin && !gotMax) {
+ if (gotTickAmount) {
+ // Allow a half-stepSize shift if series doesn't cross the X axis
+ // to ensure graph doesn't clip. Not if it does cross, in order
+ // to keep the 0 aligned with a grid line in multi axis charts.
+ var shift = stepSize / (yMax - yMin > yMax ? 1 : 2);
+ var tMin = shift * Math.floor(yMin / shift);
+
+ if (Math.abs(tMin - yMin) <= shift / 2) {
+ yMin = tMin;
+ yMax = yMin + stepSize * tiks;
+ } else {
+ yMax = shift * Math.ceil(yMax / shift);
+ yMin = yMax - stepSize * tiks;
+ }
+ } else {
+ yMin = stepSize * Math.floor(yMin / stepSize);
+ yMax = stepSize * Math.ceil(yMax / stepSize);
+ }
+ } else if (gotMax) {
+ if (gotTickAmount) {
+ yMin = yMax - stepSize * tiks;
+ } else {
+ var yMinPrev = yMin;
+ yMin = stepSize * Math.floor(yMin / stepSize);
+
+ if (Math.abs(yMax - yMin) / Utils$1.getGCD(range, stepSize) > maxTicks) {
+ // Use default ticks to compute yMin then shrinkwrap
+ yMin = yMax - stepSize * ticks;
+ yMin += stepSize * Math.floor((yMinPrev - yMin) / stepSize);
+ }
+ }
+ } else if (gotMin) {
+ if (gotTickAmount) {
+ yMax = yMin + stepSize * tiks;
+ } else {
+ yMax = stepSize * Math.ceil(yMax / stepSize);
+ }
+ }
+
+ range = Math.abs(yMax - yMin); // Final check and possible adjustment of stepSize to prevent
+ // overriding the user's min or max choice.
+
+ stepSize = Utils$1.getGCD(range, stepSize);
+ tiks = Math.round(range / stepSize);
+ } // Shrinkwrap ticks to the range
+
+
+ if (!gotTickAmount && !(gotMin || gotMax)) {
+ tiks = Math.ceil((range - jsPrecision) / (stepSize + jsPrecision)); // No user tickAmount, or min or max, we are free to adjust to avoid a
+ // prime number. This helps when reducing ticks for small svg dimensions.
+
+ if (tiks > 16 && Utils$1.getPrimeFactors(tiks).length < 2) {
+ tiks++;
+ }
+ } // Prune tiks down to range if series is all integers. Since tiks > range,
+ // range is very low (< 10 or so). Skip this step if tickAmount is true
+ // because, either the user set it, or the chart is multiscale and this
+ // axis is not determining the number of grid lines.
+
+
+ if (!gotTickAmount && axisCnf.forceNiceScale && gl.yValueDecimal === 0 && tiks > range) {
+ tiks = range;
+ stepSize = Math.round(range / tiks);
+ } // Record final tiks for use by other series that call niceScale().
+ // Note: some don't, like logarithmicScale(), etc.
+
+
+ if (gl.isMultipleYAxis && gl.multiAxisTickAmount == 0) {
+ gl.multiAxisTickAmount = tiks;
+ }
+
+ if (tiks > maxTicks && (!(gotTickAmount || gotStepSize) || axisCnf.forceNiceScale)) {
+ // Reduce the number of ticks nicely if chart svg dimensions shrink too far.
+ // The reduced tick set should always be a subset of the full set.
+ //
+ // This following products of prime factors method works as follows:
+ // We compute the prime factors of the full tick count (tiks), then all the
+ // possible products of those factors in order from smallest to biggest,
+ // until we find a product P such that: tiks/P < maxTicks.
+ //
+ // Example:
+ // Computing products of the prime factors of 30.
+ //
+ // tiks | pf | 1 2 3 4 5 6 <-- compute order
+ // --------------------------------------------------
+ // 30 | 5 | 5 5 5 <-- Multiply all
+ // | 3 | 3 3 3 3 <-- primes in each
+ // | 2 | 2 2 2 <-- column = P
+ // --------------------------------------------------
+ // 15 10 6 5 2 1 <-- tiks/P
+ //
+ // tiks = 30 has prime factors [2, 3, 5]
+ // The loop below computes the products [2,3,5,6,15,30].
+ // The last product of P = 2*3*5 is skipped since 30/P = 1.
+ // This yields tiks/P = [15,10,6,5,2,1], checked in order until
+ // tiks/P < maxTicks.
+ //
+ // Pros:
+ // 1) The ticks in the reduced set are always members of the
+ // full set of ticks.
+ // Cons:
+ // 1) None: if tiks is prime, we get all or one, nothing between, so
+ // the worst case is to display all, which is the status quo. Really
+ // only a problem visually for larger tick numbers, say, > 7.
+ //
+ var pf = Utils$1.getPrimeFactors(tiks);
+ var last = pf.length - 1;
+ var tt = tiks;
+
+ reduceLoop: for (var xFactors = 0; xFactors < last; xFactors++) {
+ for (var lowest = 0; lowest <= last - xFactors; lowest++) {
+ var stop = Math.min(lowest + xFactors, last);
+ var t = tt;
+ var div = 1;
+
+ for (var next = lowest; next <= stop; next++) {
+ div *= pf[next];
+ }
+
+ t /= div;
+
+ if (t < maxTicks) {
+ tt = t;
+ break reduceLoop;
+ }
+ }
+ }
+
+ if (tt === tiks) {
+ // Could not reduce ticks at all, go all in and display just the
+ // X axis and one tick.
+ stepSize = range;
+ } else {
+ stepSize = range / tt;
+ }
+ } // build Y label array.
+
+
+ var val = yMin - stepSize; // Ensure we don't under/over shoot due to JS precision errors.
+ // This also fixes (amongst others):
+ // https://github.com/apexcharts/apexcharts.js/issues/430
+
+ var err = stepSize * jsPrecision;
+
+ do {
+ val += stepSize;
+ result.push(Utils$1.stripNumber(val, 7));
+ } while (yMax - val > err);
+
+ return {
+ result: result,
+ niceMin: result[0],
+ niceMax: result[result.length - 1]
+ };
+ }
+ }, {
+ key: "linearScale",
+ value: function linearScale(yMin, yMax) {
+ var ticks = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 10;
+ var index = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0;
+ var step = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : undefined;
+ var range = Math.abs(yMax - yMin);
+ ticks = this._adjustTicksForSmallRange(ticks, index, range);
+
+ if (ticks === 'dataPoints') {
+ ticks = this.w.globals.dataPoints - 1;
+ }
+
+ if (!step) {
+ step = range / ticks;
+ }
+
+ if (ticks === Number.MAX_VALUE) {
+ ticks = 5;
+ step = 1;
+ }
+
+ var result = [];
+ var v = yMin;
+
+ while (ticks >= 0) {
+ result.push(v);
+ v = v + step;
+ ticks -= 1;
+ }
+
+ return {
+ result: result,
+ niceMin: result[0],
+ niceMax: result[result.length - 1]
+ };
+ }
+ }, {
+ key: "logarithmicScaleNice",
+ value: function logarithmicScaleNice(yMin, yMax, base) {
+ // Basic validation to avoid for loop starting at -inf.
+ if (yMax <= 0) yMax = Math.max(yMin, base);
+ if (yMin <= 0) yMin = Math.min(yMax, base);
+ var logs = []; // Get powers of base for our max and min
+
+ var logMax = Math.ceil(Math.log(yMax) / Math.log(base) + 1);
+ var logMin = Math.floor(Math.log(yMin) / Math.log(base));
+
+ for (var i = logMin; i < logMax; i++) {
+ logs.push(Math.pow(base, i));
+ }
+
+ return {
+ result: logs,
+ niceMin: logs[0],
+ niceMax: logs[logs.length - 1]
+ };
+ }
+ }, {
+ key: "logarithmicScale",
+ value: function logarithmicScale(yMin, yMax, base) {
+ // Basic validation to avoid for loop starting at -inf.
+ if (yMax <= 0) yMax = Math.max(yMin, base);
+ if (yMin <= 0) yMin = Math.min(yMax, base);
+ var logs = []; // Get the logarithmic range.
+
+ var logMax = Math.log(yMax) / Math.log(base);
+ var logMin = Math.log(yMin) / Math.log(base); // Get the exact logarithmic range.
+ // (This is the exact number of multiples of the base there are between yMin and yMax).
+
+ var logRange = logMax - logMin; // Round the logarithmic range to get the number of ticks we will create.
+ // If the chosen min/max values are multiples of each other WRT the base, this will be neat.
+ // If the chosen min/max aren't, we will at least still provide USEFUL ticks.
+
+ var ticks = Math.round(logRange); // Get the logarithmic spacing between ticks.
+
+ var logTickSpacing = logRange / ticks; // Create as many ticks as there is range in the logs.
+
+ for (var i = 0, logTick = logMin; i < ticks; i++, logTick += logTickSpacing) {
+ logs.push(Math.pow(base, logTick));
+ } // Add a final tick at the yMax.
+
+
+ logs.push(Math.pow(base, logMax));
+ return {
+ result: logs,
+ niceMin: yMin,
+ niceMax: yMax
+ };
+ }
+ }, {
+ key: "_adjustTicksForSmallRange",
+ value: function _adjustTicksForSmallRange(ticks, index, range) {
+ var newTicks = ticks;
+
+ if (typeof index !== 'undefined' && this.w.config.yaxis[index].labels.formatter && this.w.config.yaxis[index].tickAmount === undefined) {
+ var formattedVal = Number(this.w.config.yaxis[index].labels.formatter(1));
+
+ if (Utils$1.isNumber(formattedVal) && this.w.globals.yValueDecimal === 0) {
+ newTicks = Math.ceil(range);
+ }
+ }
+
+ return newTicks < ticks ? newTicks : ticks;
+ }
+ }, {
+ key: "setYScaleForIndex",
+ value: function setYScaleForIndex(index, minY, maxY) {
+ var gl = this.w.globals;
+ var cnf = this.w.config;
+ var y = gl.isBarHorizontal ? cnf.xaxis : cnf.yaxis[index];
+
+ if (typeof gl.yAxisScale[index] === 'undefined') {
+ gl.yAxisScale[index] = [];
+ }
+
+ var range = Math.abs(maxY - minY);
+
+ if (y.logarithmic && range <= 5) {
+ gl.invalidLogScale = true;
+ }
+
+ if (y.logarithmic && range > 5) {
+ gl.allSeriesCollapsed = false;
+ gl.yAxisScale[index] = y.forceNiceScale ? this.logarithmicScaleNice(minY, maxY, y.logBase) : this.logarithmicScale(minY, maxY, y.logBase);
+ } else {
+ if (maxY === -Number.MAX_VALUE || !Utils$1.isNumber(maxY)) {
+ // no data in the chart. Either all series collapsed or user passed a blank array
+ gl.yAxisScale[index] = this.linearScale(0, 10, 10, index, cnf.yaxis[index].stepSize);
+ } else {
+ // there is some data. Turn off the allSeriesCollapsed flag
+ gl.allSeriesCollapsed = false;
+ gl.yAxisScale[index] = this.niceScale(minY, maxY, index);
+ }
+ }
+ }
+ }, {
+ key: "setXScale",
+ value: function setXScale(minX, maxX) {
+ var w = this.w;
+ var gl = w.globals;
+ var diff = Math.abs(maxX - minX);
+
+ if (maxX === -Number.MAX_VALUE || !Utils$1.isNumber(maxX)) {
+ // no data in the chart. Either all series collapsed or user passed a blank array
+ gl.xAxisScale = this.linearScale(0, 10, 10);
+ } else {
+ gl.xAxisScale = this.linearScale(minX, maxX, w.config.xaxis.tickAmount ? w.config.xaxis.tickAmount : diff < 10 && diff > 1 ? diff + 1 : 10, 0, w.config.xaxis.stepSize);
+ }
+
+ return gl.xAxisScale;
+ }
+ }, {
+ key: "setMultipleYScales",
+ value: function setMultipleYScales() {
+ var gl = this.w.globals;
+ var cnf = this.w.config;
+ var minYArr = gl.minYArr;
+ var maxYArr = gl.maxYArr; // The current config method to map multiple series to a y axis is to
+ // include one yaxis config per series but set each yaxis seriesName to the
+ // same series name. This relies on indexing equivalence to map series to
+ // an axis: series[n] => yaxis[n]. This needs to be retained for compatibility.
+ // But we introduce an alternative that explicitly configures yaxis elements
+ // with the series that will be referenced to them (seriesName: []). This
+ // only requires including the yaxis elements that will be seen on the chart.
+ // Old way:
+ // ya: s
+ // 0: 0
+ // 1: 1
+ // 2: 1
+ // 3: 1
+ // 4: 1
+ // Axes 0..4 are all scaled and all will be rendered unless the axes are
+ // show: false. If the chart is stacked, it's assumed that series 1..4 are
+ // the contributing series. This is not particularly intuitive.
+ // New way:
+ // ya: s
+ // 0: [0]
+ // 1: [1,2,3,4]
+ // If the chart is stacked, it can be assumed that any axis with multiple
+ // series is stacked.
+ //
+ // If this is an old chart and we are being backward compatible, it will be
+ // expected that each series is associated with it's corresponding yaxis
+ // through their indices, one-to-one.
+ // If yaxis.seriesName matches series.name, we have indices yi and si.
+ // A name match where yi != si is interpretted as yaxis[yi] and yaxis[si]
+ // will both be scaled to fit the combined series[si] and series[yi].
+ // Consider series named: S0,S1,S2 and yaxes A0,A1,A2.
+ //
+ // Example 1: A0 and A1 scaled the same.
+ // A0.seriesName: S0
+ // A1.seriesName: S0
+ // A2.seriesName: S2
+ // Then A1 <-> A0
+ //
+ // Example 2: A0, A1 and A2 all scaled the same.
+ // A0.seriesName: S2
+ // A1.seriesName: S0
+ // A2.seriesName: S1
+ // A0 <-> A2, A1 <-> A0, A2 <-> A1 --->>> A0 <-> A1 <-> A2
+
+ var axisSeriesMap = [];
+ var seriesYAxisReverseMap = [];
+ var unassignedSeriesIndices = [];
+ var assumeSeriesNameArrays = cnf.yaxis.length !== cnf.series.length;
+ cnf.series.forEach(function (s, i) {
+ unassignedSeriesIndices.push(i);
+ seriesYAxisReverseMap.push(null);
+ });
+ cnf.yaxis.forEach(function (yaxe, yi) {
+ axisSeriesMap[yi] = [];
+ });
+ var unassignedYAxisIndices = []; // here, we loop through the yaxis array and find the item which has "seriesName" property
+
+ cnf.yaxis.forEach(function (yaxe, yi) {
+ var assigned = false; // Allow seriesName to be either a string (for backward compatibility),
+ // in which case, handle multiple yaxes referencing the same series.
+ // or an array of strings so that a yaxis can reference multiple series.
+ // Feature request #4237
+
+ if (yaxe.seriesName) {
+ var seriesNames = [];
+
+ if (Array.isArray(yaxe.seriesName)) {
+ seriesNames = yaxe.seriesName;
+ } else {
+ seriesNames.push(yaxe.seriesName);
+ }
+
+ seriesNames.forEach(function (name) {
+ cnf.series.forEach(function (s, si) {
+ if (s.name === name) {
+ if (yi === si || assumeSeriesNameArrays) {
+ axisSeriesMap[yi].push(si);
+ } else {
+ axisSeriesMap[si].push(yi);
+ }
+
+ assigned = true;
+ var remove = unassignedSeriesIndices.indexOf(si);
+
+ if (remove !== -1) {
+ unassignedSeriesIndices.splice(remove, 1);
+ }
+ }
+ });
+ });
+ }
+
+ if (!assigned) {
+ unassignedYAxisIndices.push(yi);
+ }
+ });
+ axisSeriesMap.forEach(function (yaxe, yi) {
+ yaxe.forEach(function (si) {
+ seriesYAxisReverseMap[si] = yi;
+ });
+ }); // All series referenced directly by yaxes have been assigned to those axes.
+ // Any series so far unassigned will be assigned to any yaxes that have yet
+ // to reference series directly, one-for-one in order of appearance, with
+ // all left-over series assigned to the last such yaxis. This captures the
+ // default single and multiaxis config options which simply includes zero,
+ // one or as many yaxes as there are series but do not reference them by name.
+
+ var lastUnassignedYAxis;
+
+ for (var i = 0; i < unassignedYAxisIndices.length; i++) {
+ lastUnassignedYAxis = unassignedYAxisIndices[i];
+ axisSeriesMap[lastUnassignedYAxis] = [];
+
+ if (unassignedSeriesIndices) {
+ var si = unassignedSeriesIndices[0];
+ unassignedSeriesIndices.shift();
+ axisSeriesMap[lastUnassignedYAxis].push(si);
+ seriesYAxisReverseMap[si] = lastUnassignedYAxis;
+ } else {
+ break;
+ }
+ }
+
+ if (lastUnassignedYAxis) {
+ unassignedSeriesIndices.forEach(function (i) {
+ axisSeriesMap[lastUnassignedYAxis].push(i);
+ seriesYAxisReverseMap[i] = lastUnassignedYAxis;
+ });
+ } // We deliberately leave the zero-length yaxis array elements in for
+ // compatibility with the old equivalence in number between sereis and yaxes.
+
+
+ gl.seriesYAxisMap = axisSeriesMap.map(function (x) {
+ return x;
+ });
+ gl.seriesYAxisReverseMap = seriesYAxisReverseMap.map(function (x) {
+ return x;
+ });
+ this.sameScaleInMultipleAxes(minYArr, maxYArr, axisSeriesMap);
+ }
+ }, {
+ key: "sameScaleInMultipleAxes",
+ value: function sameScaleInMultipleAxes(minYArr, maxYArr, axisSeriesMap) {
+ var _this = this;
+
+ var cnf = this.w.config;
+ var gl = this.w.globals; // Compute min..max for each yaxis
+ //
+
+ axisSeriesMap.forEach(function (axisSeries, ai) {
+ if (axisSeries.length > 0) {
+ var minY = Number.MAX_VALUE;
+ var maxY = -Number.MAX_VALUE;
+
+ if (cnf.chart.stacked) {
+ var sumSeries = gl.seriesX[axisSeries[0]].map(function (x) {
+ return Number.MIN_VALUE;
+ });
+ var posSeries = gl.seriesX[axisSeries[0]].map(function (x) {
+ return Number.MIN_VALUE;
+ });
+ var negSeries = gl.seriesX[axisSeries[0]].map(function (x) {
+ return Number.MIN_VALUE;
+ }); // The first series bound to the axis sets the type for stacked series
+
+ var seriesType = cnf.series[axisSeries[0]].type;
+
+ for (var i = 0; i < axisSeries.length; i++) {
+ // Sum all series for this yaxis at each corresponding datapoint
+ // For bar and column charts we need to keep positive and negative
+ // values separate.
+ var si = axisSeries[i];
+
+ if (gl.collapsedSeriesIndices.indexOf(si) === -1) {
+ for (var j = 0; j < gl.series[si].length; j++) {
+ var val = gl.series[si][j];
+
+ if (val >= 0) {
+ posSeries[j] += val;
+ } else {
+ negSeries[j] += val;
+ }
+
+ sumSeries[j] += val;
+ }
+ }
+ }
+
+ if (seriesType === 'bar') {
+ minY = Math.min.apply(null, negSeries);
+ maxY = Math.max.apply(null, posSeries);
+ } else {
+ minY = Math.min.apply(null, sumSeries);
+ maxY = Math.max.apply(null, sumSeries);
+ }
+ } else {
+ for (var _i = 0; _i < axisSeries.length; _i++) {
+ minY = Math.min(minY, minYArr[axisSeries[_i]]);
+ }
+
+ for (var _i2 = 0; _i2 < axisSeries.length; _i2++) {
+ maxY = Math.max(maxY, maxYArr[axisSeries[_i2]]);
+ }
+ }
+
+ if (cnf.yaxis[ai].min !== undefined) {
+ if (typeof cnf.yaxis[ai].min === 'function') {
+ minY = cnf.yaxis[ai].min(minY);
+ } else {
+ minY = cnf.yaxis[ai].min;
+ }
+ }
+
+ if (cnf.yaxis[ai].max !== undefined) {
+ if (typeof cnf.yaxis[ai].max === 'function') {
+ maxY = cnf.yaxis[ai].max(maxY);
+ } else {
+ maxY = cnf.yaxis[ai].max;
+ }
+ } // Set the scale for this yaxis
+
+
+ _this.setYScaleForIndex(ai, minY, maxY); // Set individual series min and max to nice values
+
+
+ axisSeries.forEach(function (si) {
+ minYArr[si] = gl.yAxisScale[ai].niceMin;
+ maxYArr[si] = gl.yAxisScale[ai].niceMax;
+ });
+ }
+ });
+ }
+ }]);
+
+ return Scales;
+ }();
+
+ /**
+ * Range is used to generates values between min and max.
+ *
+ * @module Range
+ **/
+
+ var Range = /*#__PURE__*/function () {
+ function Range(ctx) {
+ _classCallCheck(this, Range);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.scales = new Scales(ctx);
+ }
+
+ _createClass(Range, [{
+ key: "init",
+ value: function init() {
+ this.setYRange();
+ this.setXRange();
+ this.setZRange();
+ }
+ }, {
+ key: "getMinYMaxY",
+ value: function getMinYMaxY(startingSeriesIndex) {
+ var lowestY = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Number.MAX_VALUE;
+ var highestY = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : -Number.MAX_VALUE;
+ var endingSeriesIndex = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
+ var cnf = this.w.config;
+ var gl = this.w.globals;
+ var maxY = -Number.MAX_VALUE;
+ var minY = Number.MIN_VALUE;
+
+ if (endingSeriesIndex === null) {
+ endingSeriesIndex = startingSeriesIndex + 1;
+ }
+
+ var firstXIndex = 0;
+ var lastXIndex = 0;
+ var seriesX = undefined;
+
+ if (gl.seriesX.length >= endingSeriesIndex) {
+ var _ref, _gl$brushSource;
+
+ seriesX = _toConsumableArray(new Set((_ref = []).concat.apply(_ref, _toConsumableArray(gl.seriesX.slice(startingSeriesIndex, endingSeriesIndex)))));
+ firstXIndex = 0;
+ lastXIndex = seriesX.length - 1; // Eventually brushSource will be set if the current chart is a target.
+ // That is, after the appropriate event causes us to update.
+
+ var brush = (_gl$brushSource = gl.brushSource) === null || _gl$brushSource === void 0 ? void 0 : _gl$brushSource.w.config.chart.brush;
+
+ if (cnf.chart.zoom.enabled && cnf.chart.zoom.autoScaleYaxis || brush !== null && brush !== void 0 && brush.enabled && brush !== null && brush !== void 0 && brush.autoScaleYaxis) {
+ // Scale the Y axis to the min..max within the zoomed X axis domain.
+ if (cnf.xaxis.min) {
+ for (firstXIndex = 0; firstXIndex < lastXIndex && seriesX[firstXIndex] < cnf.xaxis.min; firstXIndex++) {}
+ }
+
+ if (cnf.xaxis.max) {
+ for (; lastXIndex > firstXIndex && seriesX[lastXIndex] > cnf.xaxis.max; lastXIndex--) {}
+ }
+ }
+ }
+
+ var series = gl.series;
+ var seriesMin = series;
+ var seriesMax = series;
+
+ if (cnf.chart.type === 'candlestick') {
+ seriesMin = gl.seriesCandleL;
+ seriesMax = gl.seriesCandleH;
+ } else if (cnf.chart.type === 'boxPlot') {
+ seriesMin = gl.seriesCandleO;
+ seriesMax = gl.seriesCandleC;
+ } else if (gl.isRangeData) {
+ seriesMin = gl.seriesRangeStart;
+ seriesMax = gl.seriesRangeEnd;
+ }
+
+ for (var i = startingSeriesIndex; i < endingSeriesIndex; i++) {
+ gl.dataPoints = Math.max(gl.dataPoints, series[i].length);
+ var seriesType = cnf.series[i].type;
+
+ if (gl.categoryLabels.length) {
+ gl.dataPoints = gl.categoryLabels.filter(function (label) {
+ return typeof label !== 'undefined';
+ }).length;
+ }
+
+ if (gl.labels.length && cnf.xaxis.type !== 'datetime' && gl.series.reduce(function (a, c) {
+ return a + c.length;
+ }, 0) !== 0) {
+ // the condition cnf.xaxis.type !== 'datetime' fixes #3897 and #3905
+ gl.dataPoints = Math.max(gl.dataPoints, gl.labels.length);
+ }
+
+ if (!seriesX) {
+ firstXIndex = 0;
+ lastXIndex = gl.series[i].length;
+ }
+
+ for (var j = firstXIndex; j <= lastXIndex && j < gl.series[i].length; j++) {
+ var val = series[i][j];
+
+ if (val !== null && Utils$1.isNumber(val)) {
+ if (typeof seriesMax[i][j] !== 'undefined') {
+ maxY = Math.max(maxY, seriesMax[i][j]);
+ lowestY = Math.min(lowestY, seriesMax[i][j]);
+ }
+
+ if (typeof seriesMin[i][j] !== 'undefined') {
+ lowestY = Math.min(lowestY, seriesMin[i][j]);
+ highestY = Math.max(highestY, seriesMin[i][j]);
+ } // These series arrays are dual purpose:
+ // Array : CandleO, CandleH, CandleM, CandleL, CandleC
+ // Candlestick: O H L C
+ // Boxplot : Min Q1 Median Q3 Max
+
+
+ switch (seriesType) {
+ case 'candlestick':
+ {
+ if (typeof gl.seriesCandleC[i][j] !== 'undefined') {
+ maxY = Math.max(maxY, gl.seriesCandleH[i][j]);
+ lowestY = Math.min(lowestY, gl.seriesCandleL[i][j]);
+ }
+ }
+
+ case 'boxPlot':
+ {
+ if (typeof gl.seriesCandleC[i][j] !== 'undefined') {
+ maxY = Math.max(maxY, gl.seriesCandleC[i][j]);
+ lowestY = Math.min(lowestY, gl.seriesCandleO[i][j]);
+ }
+ }
+ } // there is a combo chart and the specified series in not either
+ // candlestick, boxplot, or rangeArea/rangeBar; find the max there.
+
+
+ if (seriesType && seriesType !== 'candlestick' && seriesType !== 'boxPlot' && seriesType !== 'rangeArea' && seriesType !== 'rangeBar') {
+ maxY = Math.max(maxY, gl.series[i][j]);
+ lowestY = Math.min(lowestY, gl.series[i][j]);
+ }
+
+ highestY = maxY;
+
+ if (gl.seriesGoals[i] && gl.seriesGoals[i][j] && Array.isArray(gl.seriesGoals[i][j])) {
+ gl.seriesGoals[i][j].forEach(function (g) {
+ if (minY !== Number.MIN_VALUE) {
+ minY = Math.min(minY, g.value);
+ lowestY = minY;
+ }
+
+ maxY = Math.max(maxY, g.value);
+ highestY = maxY;
+ });
+ }
+
+ if (Utils$1.isFloat(val)) {
+ val = Utils$1.noExponents(val);
+ gl.yValueDecimal = Math.max(gl.yValueDecimal, val.toString().split('.')[1].length);
+ }
+
+ if (minY > seriesMin[i][j] && seriesMin[i][j] < 0) {
+ minY = seriesMin[i][j];
+ }
+ } else {
+ gl.hasNullValues = true;
+ }
+ }
+
+ if (seriesType === 'bar' || seriesType === 'column') {
+ if (minY < 0 && maxY < 0) {
+ // all negative values in a bar series, hence make the max to 0
+ maxY = 0;
+ highestY = Math.max(highestY, 0);
+ }
+
+ if (minY === Number.MIN_VALUE) {
+ minY = 0;
+ lowestY = Math.min(lowestY, 0);
+ }
+ }
+ }
+
+ if (cnf.chart.type === 'rangeBar' && gl.seriesRangeStart.length && gl.isBarHorizontal) {
+ minY = lowestY;
+ }
+
+ if (cnf.chart.type === 'bar') {
+ if (minY < 0 && maxY < 0) {
+ // all negative values in a bar chart, hence make the max to 0
+ maxY = 0;
+ }
+
+ if (minY === Number.MIN_VALUE) {
+ minY = 0;
+ }
+ }
+
+ return {
+ minY: minY,
+ maxY: maxY,
+ lowestY: lowestY,
+ highestY: highestY
+ };
+ }
+ }, {
+ key: "setYRange",
+ value: function setYRange() {
+ var gl = this.w.globals;
+ var cnf = this.w.config;
+ gl.maxY = -Number.MAX_VALUE;
+ gl.minY = Number.MIN_VALUE;
+ var lowestYInAllSeries = Number.MAX_VALUE;
+ var minYMaxY;
+
+ if (gl.isMultipleYAxis) {
+ // we need to get minY and maxY for multiple y axis
+ lowestYInAllSeries = Number.MAX_VALUE;
+
+ for (var i = 0; i < gl.series.length; i++) {
+ minYMaxY = this.getMinYMaxY(i);
+ gl.minYArr[i] = minYMaxY.lowestY;
+ gl.maxYArr[i] = minYMaxY.highestY;
+ lowestYInAllSeries = Math.min(lowestYInAllSeries, minYMaxY.lowestY);
+ }
+ } // and then, get the minY and maxY from all series
+
+
+ minYMaxY = this.getMinYMaxY(0, lowestYInAllSeries, null, gl.series.length);
+
+ if (cnf.chart.type === 'bar') {
+ gl.minY = minYMaxY.minY;
+ gl.maxY = minYMaxY.maxY;
+ } else {
+ gl.minY = minYMaxY.lowestY;
+ gl.maxY = minYMaxY.highestY;
+ }
+
+ lowestYInAllSeries = minYMaxY.lowestY;
+
+ if (cnf.chart.stacked) {
+ this._setStackedMinMax();
+ } // if the numbers are too big, reduce the range
+ // for eg, if number is between 100000-110000, putting 0 as the lowest
+ // value is not so good idea. So change the gl.minY for
+ // line/area/scatter/candlesticks/boxPlot/vertical rangebar
+
+
+ if (cnf.chart.type === 'line' || cnf.chart.type === 'area' || cnf.chart.type === 'scatter' || cnf.chart.type === 'candlestick' || cnf.chart.type === 'boxPlot' || cnf.chart.type === 'rangeBar' && !gl.isBarHorizontal) {
+ if (gl.minY === Number.MIN_VALUE && lowestYInAllSeries !== -Number.MAX_VALUE && lowestYInAllSeries !== gl.maxY // single value possibility
+ ) {
+ gl.minY = lowestYInAllSeries;
+ }
+ } else {
+ gl.minY = minYMaxY.minY;
+ }
+
+ cnf.yaxis.forEach(function (yaxe, index) {
+ // override all min/max values by user defined values (y axis)
+ if (yaxe.max !== undefined) {
+ if (typeof yaxe.max === 'number') {
+ gl.maxYArr[index] = yaxe.max;
+ } else if (typeof yaxe.max === 'function') {
+ // fixes apexcharts.js/issues/2098
+ gl.maxYArr[index] = yaxe.max(gl.isMultipleYAxis ? gl.maxYArr[index] : gl.maxY);
+ } // gl.maxY is for single y-axis chart, it will be ignored in multi-yaxis
+
+
+ gl.maxY = gl.maxYArr[index];
+ }
+
+ if (yaxe.min !== undefined) {
+ if (typeof yaxe.min === 'number') {
+ gl.minYArr[index] = yaxe.min;
+ } else if (typeof yaxe.min === 'function') {
+ // fixes apexcharts.js/issues/2098
+ gl.minYArr[index] = yaxe.min(gl.isMultipleYAxis ? gl.minYArr[index] === Number.MIN_VALUE ? 0 : gl.minYArr[index] : gl.minY);
+ } // gl.minY is for single y-axis chart, it will be ignored in multi-yaxis
+
+
+ gl.minY = gl.minYArr[index];
+ }
+ }); // for horizontal bar charts, we need to check xaxis min/max as user may have specified there
+
+ if (gl.isBarHorizontal) {
+ var minmax = ['min', 'max'];
+ minmax.forEach(function (m) {
+ if (cnf.xaxis[m] !== undefined && typeof cnf.xaxis[m] === 'number') {
+ m === 'min' ? gl.minY = cnf.xaxis[m] : gl.maxY = cnf.xaxis[m];
+ }
+ });
+ } // for multi y-axis we need different scales for each
+
+
+ if (gl.isMultipleYAxis) {
+ this.scales.setMultipleYScales();
+ gl.minY = lowestYInAllSeries;
+ } else {
+ this.scales.setYScaleForIndex(0, gl.minY, gl.maxY);
+ gl.minY = gl.yAxisScale[0].niceMin;
+ gl.maxY = gl.yAxisScale[0].niceMax;
+ gl.minYArr[0] = gl.yAxisScale[0].niceMin;
+ gl.maxYArr[0] = gl.yAxisScale[0].niceMax;
+ gl.seriesYAxisMap = [gl.series.map(function (x, i) {
+ return i;
+ })];
+ gl.seriesYAxisReverseMap = gl.series.map(function (x, i) {
+ return 0;
+ });
+ }
+
+ return {
+ minY: gl.minY,
+ maxY: gl.maxY,
+ minYArr: gl.minYArr,
+ maxYArr: gl.maxYArr,
+ yAxisScale: gl.yAxisScale
+ };
+ }
+ }, {
+ key: "setXRange",
+ value: function setXRange() {
+ var gl = this.w.globals;
+ var cnf = this.w.config;
+ var isXNumeric = cnf.xaxis.type === 'numeric' || cnf.xaxis.type === 'datetime' || cnf.xaxis.type === 'category' && !gl.noLabelsProvided || gl.noLabelsProvided || gl.isXNumeric;
+
+ var getInitialMinXMaxX = function getInitialMinXMaxX() {
+ for (var i = 0; i < gl.series.length; i++) {
+ if (gl.labels[i]) {
+ for (var j = 0; j < gl.labels[i].length; j++) {
+ if (gl.labels[i][j] !== null && Utils$1.isNumber(gl.labels[i][j])) {
+ gl.maxX = Math.max(gl.maxX, gl.labels[i][j]);
+ gl.initialMaxX = Math.max(gl.maxX, gl.labels[i][j]);
+ gl.minX = Math.min(gl.minX, gl.labels[i][j]);
+ gl.initialMinX = Math.min(gl.minX, gl.labels[i][j]);
+ }
+ }
+ }
+ }
+ }; // minX maxX starts here
+
+
+ if (gl.isXNumeric) {
+ getInitialMinXMaxX();
+ }
+
+ if (gl.noLabelsProvided) {
+ if (cnf.xaxis.categories.length === 0) {
+ gl.maxX = gl.labels[gl.labels.length - 1];
+ gl.initialMaxX = gl.labels[gl.labels.length - 1];
+ gl.minX = 1;
+ gl.initialMinX = 1;
+ }
+ }
+
+ if (gl.isXNumeric || gl.noLabelsProvided || gl.dataFormatXNumeric) {
+ var ticks;
+
+ if (cnf.xaxis.tickAmount === undefined) {
+ ticks = Math.round(gl.svgWidth / 150); // no labels provided and total number of dataPoints is less than 30
+
+ if (cnf.xaxis.type === 'numeric' && gl.dataPoints < 30) {
+ ticks = gl.dataPoints - 1;
+ } // this check is for when ticks exceeds total datapoints and that would result in duplicate labels
+
+
+ if (ticks > gl.dataPoints && gl.dataPoints !== 0) {
+ ticks = gl.dataPoints - 1;
+ }
+ } else if (cnf.xaxis.tickAmount === 'dataPoints') {
+ if (gl.series.length > 1) {
+ ticks = gl.series[gl.maxValsInArrayIndex].length - 1;
+ }
+
+ if (gl.isXNumeric) {
+ ticks = gl.maxX - gl.minX - 1;
+ }
+ } else {
+ ticks = cnf.xaxis.tickAmount;
+ }
+
+ gl.xTickAmount = ticks; // override all min/max values by user defined values (x axis)
+
+ if (cnf.xaxis.max !== undefined && typeof cnf.xaxis.max === 'number') {
+ gl.maxX = cnf.xaxis.max;
+ }
+
+ if (cnf.xaxis.min !== undefined && typeof cnf.xaxis.min === 'number') {
+ gl.minX = cnf.xaxis.min;
+ } // if range is provided, adjust the new minX
+
+
+ if (cnf.xaxis.range !== undefined) {
+ gl.minX = gl.maxX - cnf.xaxis.range;
+ }
+
+ if (gl.minX !== Number.MAX_VALUE && gl.maxX !== -Number.MAX_VALUE) {
+ if (cnf.xaxis.convertedCatToNumeric && !gl.dataFormatXNumeric) {
+ var catScale = [];
+
+ for (var i = gl.minX - 1; i < gl.maxX; i++) {
+ catScale.push(i + 1);
+ }
+
+ gl.xAxisScale = {
+ result: catScale,
+ niceMin: catScale[0],
+ niceMax: catScale[catScale.length - 1]
+ };
+ } else {
+ gl.xAxisScale = this.scales.setXScale(gl.minX, gl.maxX);
+ }
+ } else {
+ gl.xAxisScale = this.scales.linearScale(0, ticks, ticks, 0, cnf.xaxis.stepSize);
+
+ if (gl.noLabelsProvided && gl.labels.length > 0) {
+ gl.xAxisScale = this.scales.linearScale(1, gl.labels.length, ticks - 1, 0, cnf.xaxis.stepSize); // this is the only place seriesX is again mutated
+
+ gl.seriesX = gl.labels.slice();
+ }
+ } // we will still store these labels as the count for this will be different (to draw grid and labels placement)
+
+
+ if (isXNumeric) {
+ gl.labels = gl.xAxisScale.result.slice();
+ }
+ }
+
+ if (gl.isBarHorizontal && gl.labels.length) {
+ gl.xTickAmount = gl.labels.length;
+ } // single dataPoint
+
+
+ this._handleSingleDataPoint(); // minimum x difference to calculate bar width in numeric bars
+
+
+ this._getMinXDiff();
+
+ return {
+ minX: gl.minX,
+ maxX: gl.maxX
+ };
+ }
+ }, {
+ key: "setZRange",
+ value: function setZRange() {
+ // minZ, maxZ starts here
+ var gl = this.w.globals;
+ if (!gl.isDataXYZ) return;
+
+ for (var i = 0; i < gl.series.length; i++) {
+ if (typeof gl.seriesZ[i] !== 'undefined') {
+ for (var j = 0; j < gl.seriesZ[i].length; j++) {
+ if (gl.seriesZ[i][j] !== null && Utils$1.isNumber(gl.seriesZ[i][j])) {
+ gl.maxZ = Math.max(gl.maxZ, gl.seriesZ[i][j]);
+ gl.minZ = Math.min(gl.minZ, gl.seriesZ[i][j]);
+ }
+ }
+ }
+ }
+ }
+ }, {
+ key: "_handleSingleDataPoint",
+ value: function _handleSingleDataPoint() {
+ var gl = this.w.globals;
+ var cnf = this.w.config;
+
+ if (gl.minX === gl.maxX) {
+ var datetimeObj = new DateTime(this.ctx);
+
+ if (cnf.xaxis.type === 'datetime') {
+ var newMinX = datetimeObj.getDate(gl.minX);
+
+ if (cnf.xaxis.labels.datetimeUTC) {
+ newMinX.setUTCDate(newMinX.getUTCDate() - 2);
+ } else {
+ newMinX.setDate(newMinX.getDate() - 2);
+ }
+
+ gl.minX = new Date(newMinX).getTime();
+ var newMaxX = datetimeObj.getDate(gl.maxX);
+
+ if (cnf.xaxis.labels.datetimeUTC) {
+ newMaxX.setUTCDate(newMaxX.getUTCDate() + 2);
+ } else {
+ newMaxX.setDate(newMaxX.getDate() + 2);
+ }
+
+ gl.maxX = new Date(newMaxX).getTime();
+ } else if (cnf.xaxis.type === 'numeric' || cnf.xaxis.type === 'category' && !gl.noLabelsProvided) {
+ gl.minX = gl.minX - 2;
+ gl.initialMinX = gl.minX;
+ gl.maxX = gl.maxX + 2;
+ gl.initialMaxX = gl.maxX;
+ }
+ }
+ }
+ }, {
+ key: "_getMinXDiff",
+ value: function _getMinXDiff() {
+ var gl = this.w.globals;
+
+ if (gl.isXNumeric) {
+ // get the least x diff if numeric x axis is present
+ gl.seriesX.forEach(function (sX, i) {
+ if (sX.length === 1) {
+ // a small hack to prevent overlapping multiple bars when there is just 1 datapoint in bar series.
+ // fix #811
+ sX.push(gl.seriesX[gl.maxValsInArrayIndex][gl.seriesX[gl.maxValsInArrayIndex].length - 1]);
+ } // fix #983 (clone the array to avoid side effects)
+
+
+ var seriesX = sX.slice();
+ seriesX.sort(function (a, b) {
+ return a - b;
+ });
+ seriesX.forEach(function (s, j) {
+ if (j > 0) {
+ var xDiff = s - seriesX[j - 1];
+
+ if (xDiff > 0) {
+ gl.minXDiff = Math.min(xDiff, gl.minXDiff);
+ }
+ }
+ });
+
+ if (gl.dataPoints === 1 || gl.minXDiff === Number.MAX_VALUE) {
+ // fixes apexcharts.js #1221
+ gl.minXDiff = 0.5;
+ }
+ });
+ }
+ }
+ }, {
+ key: "_setStackedMinMax",
+ value: function _setStackedMinMax() {
+ var _this = this;
+
+ var gl = this.w.globals; // for stacked charts, we calculate each series's parallel values.
+ // i.e, series[0][j] + series[1][j] .... [series[i.length][j]]
+ // and get the max out of it
+
+ if (!gl.series.length) return;
+ var seriesGroups = gl.seriesGroups;
+
+ if (!seriesGroups.length) {
+ seriesGroups = [this.w.config.series.map(function (serie) {
+ return serie.name;
+ })];
+ }
+
+ var stackedPoss = {};
+ var stackedNegs = {};
+ seriesGroups.forEach(function (group) {
+ stackedPoss[group] = [];
+ stackedNegs[group] = [];
+
+ var indicesOfSeriesInGroup = _this.w.config.series.map(function (serie, si) {
+ return group.indexOf(serie.name) > -1 ? si : null;
+ }).filter(function (f) {
+ return f !== null;
+ });
+
+ indicesOfSeriesInGroup.forEach(function (i) {
+ for (var j = 0; j < gl.series[gl.maxValsInArrayIndex].length; j++) {
+ var _this$w$config$series, _this$w$config$series2;
+
+ if (typeof stackedPoss[group][j] === 'undefined') {
+ stackedPoss[group][j] = 0;
+ stackedNegs[group][j] = 0;
+ }
+
+ var stackSeries = _this.w.config.chart.stacked && !gl.comboCharts || _this.w.config.chart.stacked && gl.comboCharts && (!_this.w.config.chart.stackOnlyBar || ((_this$w$config$series = _this.w.config.series) === null || _this$w$config$series === void 0 ? void 0 : (_this$w$config$series2 = _this$w$config$series[i]) === null || _this$w$config$series2 === void 0 ? void 0 : _this$w$config$series2.type) === 'bar');
+
+ if (stackSeries) {
+ if (gl.series[i][j] !== null && Utils$1.isNumber(gl.series[i][j])) {
+ gl.series[i][j] > 0 ? stackedPoss[group][j] += parseFloat(gl.series[i][j]) + 0.0001 : stackedNegs[group][j] += parseFloat(gl.series[i][j]);
+ }
+ }
+ }
+ });
+ });
+ Object.entries(stackedPoss).forEach(function (_ref2) {
+ var _ref3 = _slicedToArray(_ref2, 1),
+ key = _ref3[0];
+
+ stackedPoss[key].forEach(function (_, stgi) {
+ gl.maxY = Math.max(gl.maxY, stackedPoss[key][stgi]);
+ gl.minY = Math.min(gl.minY, stackedNegs[key][stgi]);
+ });
+ });
+ }
+ }]);
+
+ return Range;
+ }();
+
+ /**
+ * ApexCharts YAxis Class for drawing Y-Axis.
+ *
+ * @module YAxis
+ **/
+
+ var YAxis = /*#__PURE__*/function () {
+ function YAxis(ctx, elgrid) {
+ _classCallCheck(this, YAxis);
+
+ this.ctx = ctx;
+ this.elgrid = elgrid;
+ this.w = ctx.w;
+ var w = this.w;
+ this.xaxisFontSize = w.config.xaxis.labels.style.fontSize;
+ this.axisFontFamily = w.config.xaxis.labels.style.fontFamily;
+ this.xaxisForeColors = w.config.xaxis.labels.style.colors;
+ this.isCategoryBarHorizontal = w.config.chart.type === 'bar' && w.config.plotOptions.bar.horizontal;
+ this.xAxisoffX = 0;
+
+ if (w.config.xaxis.position === 'bottom') {
+ this.xAxisoffX = w.globals.gridHeight;
+ }
+
+ this.drawnLabels = [];
+ this.axesUtils = new AxesUtils(ctx);
+ }
+
+ _createClass(YAxis, [{
+ key: "drawYaxis",
+ value: function drawYaxis(realIndex) {
+ var _this = this;
+
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var yaxisStyle = w.config.yaxis[realIndex].labels.style;
+ var yaxisFontSize = yaxisStyle.fontSize;
+ var yaxisFontFamily = yaxisStyle.fontFamily;
+ var yaxisFontWeight = yaxisStyle.fontWeight;
+ var elYaxis = graphics.group({
+ class: 'apexcharts-yaxis',
+ rel: realIndex,
+ transform: 'translate(' + w.globals.translateYAxisX[realIndex] + ', 0)'
+ });
+
+ if (this.axesUtils.isYAxisHidden(realIndex)) {
+ return elYaxis;
+ }
+
+ var elYaxisTexts = graphics.group({
+ class: 'apexcharts-yaxis-texts-g'
+ });
+ elYaxis.add(elYaxisTexts);
+ var tickAmount = w.globals.yAxisScale[realIndex].result.length - 1; // labelsDivider is simply svg height/number of ticks
+
+ var labelsDivider = w.globals.gridHeight / tickAmount; // initial label position = 0;
+
+ var l = w.globals.translateY;
+ var lbFormatter = w.globals.yLabelFormatters[realIndex];
+ var labels = w.globals.yAxisScale[realIndex].result.slice();
+ labels = this.axesUtils.checkForReversedLabels(realIndex, labels);
+ var firstLabel = '';
+
+ if (w.config.yaxis[realIndex].labels.show) {
+ var _loop = function _loop(i) {
+ var val = labels[i];
+ val = lbFormatter(val, i, w);
+ var xPad = w.config.yaxis[realIndex].labels.padding;
+
+ if (w.config.yaxis[realIndex].opposite && w.config.yaxis.length !== 0) {
+ xPad = xPad * -1;
+ }
+
+ var textAnchor = 'end';
+
+ if (w.config.yaxis[realIndex].opposite) {
+ textAnchor = 'start';
+ }
+
+ if (w.config.yaxis[realIndex].labels.align === 'left') {
+ textAnchor = 'start';
+ } else if (w.config.yaxis[realIndex].labels.align === 'center') {
+ textAnchor = 'middle';
+ } else if (w.config.yaxis[realIndex].labels.align === 'right') {
+ textAnchor = 'end';
+ }
+
+ var yColors = _this.axesUtils.getYAxisForeColor(yaxisStyle.colors, realIndex);
+
+ var getForeColor = function getForeColor() {
+ return Array.isArray(yColors) ? yColors[i] : yColors;
+ };
+
+ var offsetY = w.config.yaxis[realIndex].labels.offsetY;
+
+ if (w.config.chart.type === 'heatmap') {
+ var divisor = w.globals.gridHeight / w.globals.series.length - 1;
+ offsetY = offsetY - divisor / 2;
+ }
+
+ var label = graphics.drawText({
+ x: xPad,
+ y: l + tickAmount / 10 + offsetY + 1,
+ text: val,
+ textAnchor: textAnchor,
+ fontSize: yaxisFontSize,
+ fontFamily: yaxisFontFamily,
+ fontWeight: yaxisFontWeight,
+ maxWidth: w.config.yaxis[realIndex].labels.maxWidth,
+ foreColor: getForeColor(),
+ isPlainText: false,
+ cssClass: 'apexcharts-yaxis-label ' + yaxisStyle.cssClass
+ });
+
+ if (i === tickAmount) {
+ firstLabel = label;
+ }
+
+ elYaxisTexts.add(label);
+ var elTooltipTitle = document.createElementNS(w.globals.SVGNS, 'title');
+ elTooltipTitle.textContent = Array.isArray(val) ? val.join(' ') : val;
+ label.node.appendChild(elTooltipTitle);
+
+ if (w.config.yaxis[realIndex].labels.rotate !== 0) {
+ var firstabelRotatingCenter = graphics.rotateAroundCenter(firstLabel.node);
+ var labelRotatingCenter = graphics.rotateAroundCenter(label.node);
+ label.node.setAttribute('transform', "rotate(".concat(w.config.yaxis[realIndex].labels.rotate, " ").concat(firstabelRotatingCenter.x, " ").concat(labelRotatingCenter.y, ")"));
+ }
+
+ l = l + labelsDivider;
+ };
+
+ for (var i = tickAmount; i >= 0; i--) {
+ _loop(i);
+ }
+ }
+
+ if (w.config.yaxis[realIndex].title.text !== undefined) {
+ var elYaxisTitle = graphics.group({
+ class: 'apexcharts-yaxis-title'
+ });
+ var _x = 0;
+
+ if (w.config.yaxis[realIndex].opposite) {
+ _x = w.globals.translateYAxisX[realIndex];
+ }
+
+ var elYAxisTitleText = graphics.drawText({
+ x: _x,
+ y: w.globals.gridHeight / 2 + w.globals.translateY + w.config.yaxis[realIndex].title.offsetY,
+ text: w.config.yaxis[realIndex].title.text,
+ textAnchor: 'end',
+ foreColor: w.config.yaxis[realIndex].title.style.color,
+ fontSize: w.config.yaxis[realIndex].title.style.fontSize,
+ fontWeight: w.config.yaxis[realIndex].title.style.fontWeight,
+ fontFamily: w.config.yaxis[realIndex].title.style.fontFamily,
+ cssClass: 'apexcharts-yaxis-title-text ' + w.config.yaxis[realIndex].title.style.cssClass
+ });
+ elYaxisTitle.add(elYAxisTitleText);
+ elYaxis.add(elYaxisTitle);
+ }
+
+ var axisBorder = w.config.yaxis[realIndex].axisBorder;
+ var x = 31 + axisBorder.offsetX;
+
+ if (w.config.yaxis[realIndex].opposite) {
+ x = -31 - axisBorder.offsetX;
+ }
+
+ if (axisBorder.show) {
+ var elVerticalLine = graphics.drawLine(x, w.globals.translateY + axisBorder.offsetY - 2, x, w.globals.gridHeight + w.globals.translateY + axisBorder.offsetY + 2, axisBorder.color, 0, axisBorder.width);
+ elYaxis.add(elVerticalLine);
+ }
+
+ if (w.config.yaxis[realIndex].axisTicks.show) {
+ this.axesUtils.drawYAxisTicks(x, tickAmount, axisBorder, w.config.yaxis[realIndex].axisTicks, realIndex, labelsDivider, elYaxis);
+ }
+
+ return elYaxis;
+ } // This actually becomes horizontal axis (for bar charts)
+
+ }, {
+ key: "drawYaxisInversed",
+ value: function drawYaxisInversed(realIndex) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var elXaxis = graphics.group({
+ class: 'apexcharts-xaxis apexcharts-yaxis-inversed'
+ });
+ var elXaxisTexts = graphics.group({
+ class: 'apexcharts-xaxis-texts-g',
+ transform: "translate(".concat(w.globals.translateXAxisX, ", ").concat(w.globals.translateXAxisY, ")")
+ });
+ elXaxis.add(elXaxisTexts);
+ var tickAmount = w.globals.yAxisScale[realIndex].result.length - 1; // labelsDivider is simply svg width/number of ticks
+
+ var labelsDivider = w.globals.gridWidth / tickAmount + 0.1; // initial label position;
+
+ var l = labelsDivider + w.config.xaxis.labels.offsetX;
+ var lbFormatter = w.globals.xLabelFormatter;
+ var labels = w.globals.yAxisScale[realIndex].result.slice();
+ var timescaleLabels = w.globals.timescaleLabels;
+
+ if (timescaleLabels.length > 0) {
+ this.xaxisLabels = timescaleLabels.slice();
+ labels = timescaleLabels.slice();
+ tickAmount = labels.length;
+ }
+
+ labels = this.axesUtils.checkForReversedLabels(realIndex, labels);
+ var tl = timescaleLabels.length;
+
+ if (w.config.xaxis.labels.show) {
+ for (var i = tl ? 0 : tickAmount; tl ? i < tl : i >= 0; tl ? i++ : i--) {
+ var val = labels[i];
+ val = lbFormatter(val, i, w);
+ var x = w.globals.gridWidth + w.globals.padHorizontal - (l - labelsDivider + w.config.xaxis.labels.offsetX);
+
+ if (timescaleLabels.length) {
+ var label = this.axesUtils.getLabel(labels, timescaleLabels, x, i, this.drawnLabels, this.xaxisFontSize);
+ x = label.x;
+ val = label.text;
+ this.drawnLabels.push(label.text);
+
+ if (i === 0 && w.globals.skipFirstTimelinelabel) {
+ val = '';
+ }
+
+ if (i === labels.length - 1 && w.globals.skipLastTimelinelabel) {
+ val = '';
+ }
+ }
+
+ var elTick = graphics.drawText({
+ x: x,
+ y: this.xAxisoffX + w.config.xaxis.labels.offsetY + 30 - (w.config.xaxis.position === 'top' ? w.globals.xAxisHeight + w.config.xaxis.axisTicks.height - 2 : 0),
+ text: val,
+ textAnchor: 'middle',
+ foreColor: Array.isArray(this.xaxisForeColors) ? this.xaxisForeColors[realIndex] : this.xaxisForeColors,
+ fontSize: this.xaxisFontSize,
+ fontFamily: this.xaxisFontFamily,
+ fontWeight: w.config.xaxis.labels.style.fontWeight,
+ isPlainText: false,
+ cssClass: 'apexcharts-xaxis-label ' + w.config.xaxis.labels.style.cssClass
+ });
+ elXaxisTexts.add(elTick);
+ elTick.tspan(val);
+ var elTooltipTitle = document.createElementNS(w.globals.SVGNS, 'title');
+ elTooltipTitle.textContent = val;
+ elTick.node.appendChild(elTooltipTitle);
+ l = l + labelsDivider;
+ }
+ }
+
+ this.inversedYAxisTitleText(elXaxis);
+ this.inversedYAxisBorder(elXaxis);
+ return elXaxis;
+ }
+ }, {
+ key: "inversedYAxisBorder",
+ value: function inversedYAxisBorder(parent) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var axisBorder = w.config.xaxis.axisBorder;
+
+ if (axisBorder.show) {
+ var lineCorrection = 0;
+
+ if (w.config.chart.type === 'bar' && w.globals.isXNumeric) {
+ lineCorrection = lineCorrection - 15;
+ }
+
+ var elHorzLine = graphics.drawLine(w.globals.padHorizontal + lineCorrection + axisBorder.offsetX, this.xAxisoffX, w.globals.gridWidth, this.xAxisoffX, axisBorder.color, 0, axisBorder.height); // in horizontal bars, we append axisBorder to elGridBorders element to avoid z-index issues
+
+ if (this.elgrid && this.elgrid.elGridBorders && w.config.grid.show) {
+ this.elgrid.elGridBorders.add(elHorzLine);
+ } else {
+ parent.add(elHorzLine);
+ }
+ }
+ }
+ }, {
+ key: "inversedYAxisTitleText",
+ value: function inversedYAxisTitleText(parent) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+
+ if (w.config.xaxis.title.text !== undefined) {
+ var elYaxisTitle = graphics.group({
+ class: 'apexcharts-xaxis-title apexcharts-yaxis-title-inversed'
+ });
+ var elYAxisTitleText = graphics.drawText({
+ x: w.globals.gridWidth / 2 + w.config.xaxis.title.offsetX,
+ y: this.xAxisoffX + parseFloat(this.xaxisFontSize) + parseFloat(w.config.xaxis.title.style.fontSize) + w.config.xaxis.title.offsetY + 20,
+ text: w.config.xaxis.title.text,
+ textAnchor: 'middle',
+ fontSize: w.config.xaxis.title.style.fontSize,
+ fontFamily: w.config.xaxis.title.style.fontFamily,
+ fontWeight: w.config.xaxis.title.style.fontWeight,
+ foreColor: w.config.xaxis.title.style.color,
+ cssClass: 'apexcharts-xaxis-title-text ' + w.config.xaxis.title.style.cssClass
+ });
+ elYaxisTitle.add(elYAxisTitleText);
+ parent.add(elYaxisTitle);
+ }
+ }
+ }, {
+ key: "yAxisTitleRotate",
+ value: function yAxisTitleRotate(realIndex, yAxisOpposite) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var yAxisLabelsCoord = {
+ width: 0,
+ height: 0
+ };
+ var yAxisTitleCoord = {
+ width: 0,
+ height: 0
+ };
+ var elYAxisLabelsWrap = w.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(realIndex, "'] .apexcharts-yaxis-texts-g"));
+
+ if (elYAxisLabelsWrap !== null) {
+ yAxisLabelsCoord = elYAxisLabelsWrap.getBoundingClientRect();
+ }
+
+ var yAxisTitle = w.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(realIndex, "'] .apexcharts-yaxis-title text"));
+
+ if (yAxisTitle !== null) {
+ yAxisTitleCoord = yAxisTitle.getBoundingClientRect();
+ }
+
+ if (yAxisTitle !== null) {
+ var x = this.xPaddingForYAxisTitle(realIndex, yAxisLabelsCoord, yAxisTitleCoord, yAxisOpposite);
+ yAxisTitle.setAttribute('x', x.xPos - (yAxisOpposite ? 10 : 0));
+ }
+
+ if (yAxisTitle !== null) {
+ var titleRotatingCenter = graphics.rotateAroundCenter(yAxisTitle);
+ yAxisTitle.setAttribute('transform', "rotate(".concat(yAxisOpposite ? w.config.yaxis[realIndex].title.rotate * -1 : w.config.yaxis[realIndex].title.rotate, " ").concat(titleRotatingCenter.x, " ").concat(titleRotatingCenter.y, ")"));
+ }
+ }
+ }, {
+ key: "xPaddingForYAxisTitle",
+ value: function xPaddingForYAxisTitle(realIndex, yAxisLabelsCoord, yAxisTitleCoord, yAxisOpposite) {
+ var w = this.w;
+ var oppositeAxisCount = 0;
+ var x = 0;
+ var padd = 10;
+
+ if (w.config.yaxis[realIndex].title.text === undefined || realIndex < 0) {
+ return {
+ xPos: x,
+ padd: 0
+ };
+ }
+
+ if (yAxisOpposite) {
+ x = yAxisLabelsCoord.width + w.config.yaxis[realIndex].title.offsetX + yAxisTitleCoord.width / 2 + padd / 2;
+ oppositeAxisCount += 1;
+
+ if (oppositeAxisCount === 0) {
+ x = x - padd / 2;
+ }
+ } else {
+ x = yAxisLabelsCoord.width * -1 + w.config.yaxis[realIndex].title.offsetX + padd / 2 + yAxisTitleCoord.width / 2;
+
+ if (w.globals.isBarHorizontal) {
+ padd = 25;
+ x = yAxisLabelsCoord.width * -1 - w.config.yaxis[realIndex].title.offsetX - padd;
+ }
+ }
+
+ return {
+ xPos: x,
+ padd: padd
+ };
+ } // sets the x position of the y-axis by counting the labels width, title width and any offset
+
+ }, {
+ key: "setYAxisXPosition",
+ value: function setYAxisXPosition(yaxisLabelCoords, yTitleCoords) {
+ var w = this.w;
+ var xLeft = 0;
+ var xRight = 0;
+ var leftOffsetX = 18;
+ var rightOffsetX = 1;
+
+ if (w.config.yaxis.length > 1) {
+ this.multipleYs = true;
+ }
+
+ w.config.yaxis.map(function (yaxe, index) {
+ var shouldNotDrawAxis = w.globals.ignoreYAxisIndexes.indexOf(index) > -1 || !yaxe.show || yaxe.floating || yaxisLabelCoords[index].width === 0;
+ var axisWidth = yaxisLabelCoords[index].width + yTitleCoords[index].width;
+
+ if (!yaxe.opposite) {
+ xLeft = w.globals.translateX - leftOffsetX;
+
+ if (!shouldNotDrawAxis) {
+ leftOffsetX = leftOffsetX + axisWidth + 20;
+ }
+
+ w.globals.translateYAxisX[index] = xLeft + yaxe.labels.offsetX;
+ } else {
+ if (w.globals.isBarHorizontal) {
+ xRight = w.globals.gridWidth + w.globals.translateX - 1;
+ w.globals.translateYAxisX[index] = xRight - yaxe.labels.offsetX;
+ } else {
+ xRight = w.globals.gridWidth + w.globals.translateX + rightOffsetX;
+
+ if (!shouldNotDrawAxis) {
+ rightOffsetX = rightOffsetX + axisWidth + 20;
+ }
+
+ w.globals.translateYAxisX[index] = xRight - yaxe.labels.offsetX + 20;
+ }
+ }
+ });
+ }
+ }, {
+ key: "setYAxisTextAlignments",
+ value: function setYAxisTextAlignments() {
+ var w = this.w;
+ var yaxis = w.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");
+ yaxis = Utils$1.listToArray(yaxis);
+ yaxis.forEach(function (y, index) {
+ var yaxe = w.config.yaxis[index]; // proceed only if user has specified alignment
+
+ if (yaxe && !yaxe.floating && yaxe.labels.align !== undefined) {
+ var yAxisInner = w.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(index, "'] .apexcharts-yaxis-texts-g"));
+ var yAxisTexts = w.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(index, "'] .apexcharts-yaxis-label"));
+ yAxisTexts = Utils$1.listToArray(yAxisTexts);
+ var rect = yAxisInner.getBoundingClientRect();
+
+ if (yaxe.labels.align === 'left') {
+ yAxisTexts.forEach(function (label, lI) {
+ label.setAttribute('text-anchor', 'start');
+ });
+
+ if (!yaxe.opposite) {
+ yAxisInner.setAttribute('transform', "translate(-".concat(rect.width, ", 0)"));
+ }
+ } else if (yaxe.labels.align === 'center') {
+ yAxisTexts.forEach(function (label, lI) {
+ label.setAttribute('text-anchor', 'middle');
+ });
+ yAxisInner.setAttribute('transform', "translate(".concat(rect.width / 2 * (!yaxe.opposite ? -1 : 1), ", 0)"));
+ } else if (yaxe.labels.align === 'right') {
+ yAxisTexts.forEach(function (label, lI) {
+ label.setAttribute('text-anchor', 'end');
+ });
+
+ if (yaxe.opposite) {
+ yAxisInner.setAttribute('transform', "translate(".concat(rect.width, ", 0)"));
+ }
+ }
+ }
+ });
+ }
+ }]);
+
+ return YAxis;
+ }();
+
+ var Events = /*#__PURE__*/function () {
+ function Events(ctx) {
+ _classCallCheck(this, Events);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.documentEvent = Utils$1.bind(this.documentEvent, this);
+ }
+
+ _createClass(Events, [{
+ key: "addEventListener",
+ value: function addEventListener(name, handler) {
+ var w = this.w;
+
+ if (w.globals.events.hasOwnProperty(name)) {
+ w.globals.events[name].push(handler);
+ } else {
+ w.globals.events[name] = [handler];
+ }
+ }
+ }, {
+ key: "removeEventListener",
+ value: function removeEventListener(name, handler) {
+ var w = this.w;
+
+ if (!w.globals.events.hasOwnProperty(name)) {
+ return;
+ }
+
+ var index = w.globals.events[name].indexOf(handler);
+
+ if (index !== -1) {
+ w.globals.events[name].splice(index, 1);
+ }
+ }
+ }, {
+ key: "fireEvent",
+ value: function fireEvent(name, args) {
+ var w = this.w;
+
+ if (!w.globals.events.hasOwnProperty(name)) {
+ return;
+ }
+
+ if (!args || !args.length) {
+ args = [];
+ }
+
+ var evs = w.globals.events[name];
+ var l = evs.length;
+
+ for (var i = 0; i < l; i++) {
+ evs[i].apply(null, args);
+ }
+ }
+ }, {
+ key: "setupEventHandlers",
+ value: function setupEventHandlers() {
+ var _this = this;
+
+ var w = this.w;
+ var me = this.ctx;
+ var clickableArea = w.globals.dom.baseEl.querySelector(w.globals.chartClass);
+ this.ctx.eventList.forEach(function (event) {
+ clickableArea.addEventListener(event, function (e) {
+ var opts = Object.assign({}, w, {
+ seriesIndex: w.globals.capturedSeriesIndex,
+ dataPointIndex: w.globals.capturedDataPointIndex
+ });
+
+ if (e.type === 'mousemove' || e.type === 'touchmove') {
+ if (typeof w.config.chart.events.mouseMove === 'function') {
+ w.config.chart.events.mouseMove(e, me, opts);
+ }
+ } else if (e.type === 'mouseleave' || e.type === 'touchleave') {
+ if (typeof w.config.chart.events.mouseLeave === 'function') {
+ w.config.chart.events.mouseLeave(e, me, opts);
+ }
+ } else if (e.type === 'mouseup' && e.which === 1 || e.type === 'touchend') {
+ if (typeof w.config.chart.events.click === 'function') {
+ w.config.chart.events.click(e, me, opts);
+ }
+
+ me.ctx.events.fireEvent('click', [e, me, opts]);
+ }
+ }, {
+ capture: false,
+ passive: true
+ });
+ });
+ this.ctx.eventList.forEach(function (event) {
+ w.globals.dom.baseEl.addEventListener(event, _this.documentEvent, {
+ passive: true
+ });
+ });
+ this.ctx.core.setupBrushHandler();
+ }
+ }, {
+ key: "documentEvent",
+ value: function documentEvent(e) {
+ var w = this.w;
+ var target = e.target.className;
+
+ if (e.type === 'click') {
+ var elMenu = w.globals.dom.baseEl.querySelector('.apexcharts-menu');
+
+ if (elMenu && elMenu.classList.contains('apexcharts-menu-open') && target !== 'apexcharts-menu-icon') {
+ elMenu.classList.remove('apexcharts-menu-open');
+ }
+ }
+
+ w.globals.clientX = e.type === 'touchmove' ? e.touches[0].clientX : e.clientX;
+ w.globals.clientY = e.type === 'touchmove' ? e.touches[0].clientY : e.clientY;
+ }
+ }]);
+
+ return Events;
+ }();
+
+ var Localization = /*#__PURE__*/function () {
+ function Localization(ctx) {
+ _classCallCheck(this, Localization);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(Localization, [{
+ key: "setCurrentLocaleValues",
+ value: function setCurrentLocaleValues(localeName) {
+ var locales = this.w.config.chart.locales; // check if user has specified locales in global Apex variable
+ // if yes - then extend those with local chart's locale
+
+ if (window.Apex.chart && window.Apex.chart.locales && window.Apex.chart.locales.length > 0) {
+ locales = this.w.config.chart.locales.concat(window.Apex.chart.locales);
+ } // find the locale from the array of locales which user has set (either by chart.defaultLocale or by calling setLocale() method.)
+
+
+ var selectedLocale = locales.filter(function (c) {
+ return c.name === localeName;
+ })[0];
+
+ if (selectedLocale) {
+ // create a complete locale object by extending defaults so you don't get undefined errors.
+ var ret = Utils$1.extend(en, selectedLocale); // store these locale options in global var for ease access
+
+ this.w.globals.locale = ret.options;
+ } else {
+ throw new Error('Wrong locale name provided. Please make sure you set the correct locale name in options');
+ }
+ }
+ }]);
+
+ return Localization;
+ }();
+
+ var Axes = /*#__PURE__*/function () {
+ function Axes(ctx) {
+ _classCallCheck(this, Axes);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(Axes, [{
+ key: "drawAxis",
+ value: function drawAxis(type, elgrid) {
+ var _this = this;
+
+ var gl = this.w.globals;
+ var cnf = this.w.config;
+ var xAxis = new XAxis(this.ctx, elgrid);
+ var yAxis = new YAxis(this.ctx, elgrid);
+
+ if (gl.axisCharts && type !== 'radar') {
+ var elXaxis, elYaxis;
+
+ if (gl.isBarHorizontal) {
+ elYaxis = yAxis.drawYaxisInversed(0);
+ elXaxis = xAxis.drawXaxisInversed(0);
+ gl.dom.elGraphical.add(elXaxis);
+ gl.dom.elGraphical.add(elYaxis);
+ } else {
+ elXaxis = xAxis.drawXaxis();
+ gl.dom.elGraphical.add(elXaxis);
+ cnf.yaxis.map(function (yaxe, index) {
+ if (gl.ignoreYAxisIndexes.indexOf(index) === -1) {
+ elYaxis = yAxis.drawYaxis(index);
+ gl.dom.Paper.add(elYaxis);
+
+ if (_this.w.config.grid.position === 'back') {
+ var inner = gl.dom.Paper.children()[1];
+ inner.remove();
+ gl.dom.Paper.add(inner);
+ }
+ }
+ });
+ }
+ }
+ }
+ }]);
+
+ return Axes;
+ }();
+
+ var Crosshairs = /*#__PURE__*/function () {
+ function Crosshairs(ctx) {
+ _classCallCheck(this, Crosshairs);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(Crosshairs, [{
+ key: "drawXCrosshairs",
+ value: function drawXCrosshairs() {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var filters = new Filters(this.ctx);
+ var crosshairGradient = w.config.xaxis.crosshairs.fill.gradient;
+ var crosshairShadow = w.config.xaxis.crosshairs.dropShadow;
+ var fillType = w.config.xaxis.crosshairs.fill.type;
+ var gradientFrom = crosshairGradient.colorFrom;
+ var gradientTo = crosshairGradient.colorTo;
+ var opacityFrom = crosshairGradient.opacityFrom;
+ var opacityTo = crosshairGradient.opacityTo;
+ var stops = crosshairGradient.stops;
+ var shadow = 'none';
+ var dropShadow = crosshairShadow.enabled;
+ var shadowLeft = crosshairShadow.left;
+ var shadowTop = crosshairShadow.top;
+ var shadowBlur = crosshairShadow.blur;
+ var shadowColor = crosshairShadow.color;
+ var shadowOpacity = crosshairShadow.opacity;
+ var xcrosshairsFill = w.config.xaxis.crosshairs.fill.color;
+
+ if (w.config.xaxis.crosshairs.show) {
+ if (fillType === 'gradient') {
+ xcrosshairsFill = graphics.drawGradient('vertical', gradientFrom, gradientTo, opacityFrom, opacityTo, null, stops, null);
+ }
+
+ var xcrosshairs = graphics.drawRect();
+
+ if (w.config.xaxis.crosshairs.width === 1) {
+ // to prevent drawing 2 lines, convert rect to line
+ xcrosshairs = graphics.drawLine();
+ }
+
+ var gridHeight = w.globals.gridHeight;
+
+ if (!Utils$1.isNumber(gridHeight) || gridHeight < 0) {
+ gridHeight = 0;
+ }
+
+ var crosshairsWidth = w.config.xaxis.crosshairs.width;
+
+ if (!Utils$1.isNumber(crosshairsWidth) || crosshairsWidth < 0) {
+ crosshairsWidth = 0;
+ }
+
+ xcrosshairs.attr({
+ class: 'apexcharts-xcrosshairs',
+ x: 0,
+ y: 0,
+ y2: gridHeight,
+ width: crosshairsWidth,
+ height: gridHeight,
+ fill: xcrosshairsFill,
+ filter: shadow,
+ 'fill-opacity': w.config.xaxis.crosshairs.opacity,
+ stroke: w.config.xaxis.crosshairs.stroke.color,
+ 'stroke-width': w.config.xaxis.crosshairs.stroke.width,
+ 'stroke-dasharray': w.config.xaxis.crosshairs.stroke.dashArray
+ });
+
+ if (dropShadow) {
+ xcrosshairs = filters.dropShadow(xcrosshairs, {
+ left: shadowLeft,
+ top: shadowTop,
+ blur: shadowBlur,
+ color: shadowColor,
+ opacity: shadowOpacity
+ });
+ }
+
+ w.globals.dom.elGraphical.add(xcrosshairs);
+ }
+ }
+ }, {
+ key: "drawYCrosshairs",
+ value: function drawYCrosshairs() {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var crosshair = w.config.yaxis[0].crosshairs;
+ var offX = w.globals.barPadForNumericAxis;
+
+ if (w.config.yaxis[0].crosshairs.show) {
+ var ycrosshairs = graphics.drawLine(-offX, 0, w.globals.gridWidth + offX, 0, crosshair.stroke.color, crosshair.stroke.dashArray, crosshair.stroke.width);
+ ycrosshairs.attr({
+ class: 'apexcharts-ycrosshairs'
+ });
+ w.globals.dom.elGraphical.add(ycrosshairs);
+ } // draw an invisible crosshair to help in positioning the yaxis tooltip
+
+
+ var ycrosshairsHidden = graphics.drawLine(-offX, 0, w.globals.gridWidth + offX, 0, crosshair.stroke.color, 0, 0);
+ ycrosshairsHidden.attr({
+ class: 'apexcharts-ycrosshairs-hidden'
+ });
+ w.globals.dom.elGraphical.add(ycrosshairsHidden);
+ }
+ }]);
+
+ return Crosshairs;
+ }();
+
+ /**
+ * ApexCharts Responsive Class to override options for different screen sizes.
+ *
+ * @module Responsive
+ **/
+
+ var Responsive = /*#__PURE__*/function () {
+ function Responsive(ctx) {
+ _classCallCheck(this, Responsive);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ } // the opts parameter if not null has to be set overriding everything
+ // as the opts is set by user externally
+
+
+ _createClass(Responsive, [{
+ key: "checkResponsiveConfig",
+ value: function checkResponsiveConfig(opts) {
+ var _this = this;
+
+ var w = this.w;
+ var cnf = w.config; // check if responsive config exists
+
+ if (cnf.responsive.length === 0) return;
+ var res = cnf.responsive.slice();
+ res.sort(function (a, b) {
+ return a.breakpoint > b.breakpoint ? 1 : b.breakpoint > a.breakpoint ? -1 : 0;
+ }).reverse();
+ var config = new Config({});
+
+ var iterateResponsiveOptions = function iterateResponsiveOptions() {
+ var newOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ var largestBreakpoint = res[0].breakpoint;
+ var width = window.innerWidth > 0 ? window.innerWidth : screen.width;
+
+ if (width > largestBreakpoint) {
+ var options = CoreUtils.extendArrayProps(config, w.globals.initialConfig, w);
+ newOptions = Utils$1.extend(options, newOptions);
+ newOptions = Utils$1.extend(w.config, newOptions);
+
+ _this.overrideResponsiveOptions(newOptions);
+ } else {
+ for (var i = 0; i < res.length; i++) {
+ if (width < res[i].breakpoint) {
+ newOptions = CoreUtils.extendArrayProps(config, res[i].options, w);
+ newOptions = Utils$1.extend(w.config, newOptions);
+
+ _this.overrideResponsiveOptions(newOptions);
+ }
+ }
+ }
+ };
+
+ if (opts) {
+ var options = CoreUtils.extendArrayProps(config, opts, w);
+ options = Utils$1.extend(w.config, options);
+ options = Utils$1.extend(options, opts);
+ iterateResponsiveOptions(options);
+ } else {
+ iterateResponsiveOptions({});
+ }
+ }
+ }, {
+ key: "overrideResponsiveOptions",
+ value: function overrideResponsiveOptions(newOptions) {
+ var newConfig = new Config(newOptions).init({
+ responsiveOverride: true
+ });
+ this.w.config = newConfig;
+ }
+ }]);
+
+ return Responsive;
+ }();
+
+ /**
+ * ApexCharts Theme Class for setting the colors and palettes.
+ *
+ * @module Theme
+ **/
+
+ var Theme = /*#__PURE__*/function () {
+ function Theme(ctx) {
+ _classCallCheck(this, Theme);
+
+ this.ctx = ctx;
+ this.colors = [];
+ this.w = ctx.w;
+ var w = this.w;
+ this.isColorFn = false;
+ this.isHeatmapDistributed = w.config.chart.type === 'treemap' && w.config.plotOptions.treemap.distributed || w.config.chart.type === 'heatmap' && w.config.plotOptions.heatmap.distributed;
+ this.isBarDistributed = w.config.plotOptions.bar.distributed && (w.config.chart.type === 'bar' || w.config.chart.type === 'rangeBar');
+ }
+
+ _createClass(Theme, [{
+ key: "init",
+ value: function init() {
+ this.setDefaultColors();
+ }
+ }, {
+ key: "setDefaultColors",
+ value: function setDefaultColors() {
+ var _w$config$colors,
+ _this = this;
+
+ var w = this.w;
+ var utils = new Utils$1();
+ w.globals.dom.elWrap.classList.add("apexcharts-theme-".concat(w.config.theme.mode));
+
+ if (w.config.colors === undefined || ((_w$config$colors = w.config.colors) === null || _w$config$colors === void 0 ? void 0 : _w$config$colors.length) === 0) {
+ w.globals.colors = this.predefined();
+ } else {
+ w.globals.colors = w.config.colors; // if user provided a function in colors, we need to eval here
+
+ if (Array.isArray(w.config.colors) && w.config.colors.length > 0 && typeof w.config.colors[0] === 'function') {
+ w.globals.colors = w.config.series.map(function (s, i) {
+ var c = w.config.colors[i];
+ if (!c) c = w.config.colors[0];
+
+ if (typeof c === 'function') {
+ _this.isColorFn = true;
+ return c({
+ value: w.globals.axisCharts ? w.globals.series[i][0] ? w.globals.series[i][0] : 0 : w.globals.series[i],
+ seriesIndex: i,
+ dataPointIndex: i,
+ w: w
+ });
+ }
+
+ return c;
+ });
+ }
+ } // user defined colors in series array
+
+
+ w.globals.seriesColors.map(function (c, i) {
+ if (c) {
+ w.globals.colors[i] = c;
+ }
+ });
+
+ if (w.config.theme.monochrome.enabled) {
+ var monoArr = [];
+ var glsCnt = w.globals.series.length;
+
+ if (this.isBarDistributed || this.isHeatmapDistributed) {
+ glsCnt = w.globals.series[0].length * w.globals.series.length;
+ }
+
+ var mainColor = w.config.theme.monochrome.color;
+ var part = 1 / (glsCnt / w.config.theme.monochrome.shadeIntensity);
+ var shade = w.config.theme.monochrome.shadeTo;
+ var percent = 0;
+
+ for (var gsl = 0; gsl < glsCnt; gsl++) {
+ var newColor = void 0;
+
+ if (shade === 'dark') {
+ newColor = utils.shadeColor(percent * -1, mainColor);
+ percent = percent + part;
+ } else {
+ newColor = utils.shadeColor(percent, mainColor);
+ percent = percent + part;
+ }
+
+ monoArr.push(newColor);
+ }
+
+ w.globals.colors = monoArr.slice();
+ }
+
+ var defaultColors = w.globals.colors.slice(); // if user specified fewer colors than no. of series, push the same colors again
+
+ this.pushExtraColors(w.globals.colors);
+ var colorTypes = ['fill', 'stroke'];
+ colorTypes.forEach(function (c) {
+ if (w.config[c].colors === undefined) {
+ w.globals[c].colors = _this.isColorFn ? w.config.colors : defaultColors;
+ } else {
+ w.globals[c].colors = w.config[c].colors.slice();
+ }
+
+ _this.pushExtraColors(w.globals[c].colors);
+ });
+
+ if (w.config.dataLabels.style.colors === undefined) {
+ w.globals.dataLabels.style.colors = defaultColors;
+ } else {
+ w.globals.dataLabels.style.colors = w.config.dataLabels.style.colors.slice();
+ }
+
+ this.pushExtraColors(w.globals.dataLabels.style.colors, 50);
+
+ if (w.config.plotOptions.radar.polygons.fill.colors === undefined) {
+ w.globals.radarPolygons.fill.colors = [w.config.theme.mode === 'dark' ? '#424242' : 'none'];
+ } else {
+ w.globals.radarPolygons.fill.colors = w.config.plotOptions.radar.polygons.fill.colors.slice();
+ }
+
+ this.pushExtraColors(w.globals.radarPolygons.fill.colors, 20); // The point colors
+
+ if (w.config.markers.colors === undefined) {
+ w.globals.markers.colors = defaultColors;
+ } else {
+ w.globals.markers.colors = w.config.markers.colors.slice();
+ }
+
+ this.pushExtraColors(w.globals.markers.colors);
+ } // When the number of colors provided is less than the number of series, this method
+ // will push same colors to the list
+ // params:
+ // distributed is only valid for distributed column/bar charts
+
+ }, {
+ key: "pushExtraColors",
+ value: function pushExtraColors(colorSeries, length) {
+ var distributed = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
+ var w = this.w;
+ var len = length || w.globals.series.length;
+
+ if (distributed === null) {
+ distributed = this.isBarDistributed || this.isHeatmapDistributed || w.config.chart.type === 'heatmap' && w.config.plotOptions.heatmap.colorScale.inverse;
+ }
+
+ if (distributed && w.globals.series.length) {
+ len = w.globals.series[w.globals.maxValsInArrayIndex].length * w.globals.series.length;
+ }
+
+ if (colorSeries.length < len) {
+ var diff = len - colorSeries.length;
+
+ for (var i = 0; i < diff; i++) {
+ colorSeries.push(colorSeries[i]);
+ }
+ }
+ }
+ }, {
+ key: "updateThemeOptions",
+ value: function updateThemeOptions(options) {
+ options.chart = options.chart || {};
+ options.tooltip = options.tooltip || {};
+ var mode = options.theme.mode || 'light';
+ var palette = options.theme.palette ? options.theme.palette : mode === 'dark' ? 'palette4' : 'palette1';
+ var foreColor = options.chart.foreColor ? options.chart.foreColor : mode === 'dark' ? '#f6f7f8' : '#373d3f';
+ options.tooltip.theme = mode;
+ options.chart.foreColor = foreColor;
+ options.theme.palette = palette;
+ return options;
+ }
+ }, {
+ key: "predefined",
+ value: function predefined() {
+ var palette = this.w.config.theme.palette; // D6E3F8, FCEFEF, DCE0D9, A5978B, EDDDD4, D6E3F8, FEF5EF
+
+ switch (palette) {
+ case 'palette1':
+ this.colors = ['#008FFB', '#00E396', '#FEB019', '#FF4560', '#775DD0'];
+ break;
+
+ case 'palette2':
+ this.colors = ['#3f51b5', '#03a9f4', '#4caf50', '#f9ce1d', '#FF9800'];
+ break;
+
+ case 'palette3':
+ this.colors = ['#33b2df', '#546E7A', '#d4526e', '#13d8aa', '#A5978B'];
+ break;
+
+ case 'palette4':
+ this.colors = ['#4ecdc4', '#c7f464', '#81D4FA', '#fd6a6a', '#546E7A'];
+ break;
+
+ case 'palette5':
+ this.colors = ['#2b908f', '#f9a3a4', '#90ee7e', '#fa4443', '#69d2e7'];
+ break;
+
+ case 'palette6':
+ this.colors = ['#449DD1', '#F86624', '#EA3546', '#662E9B', '#C5D86D'];
+ break;
+
+ case 'palette7':
+ this.colors = ['#D7263D', '#1B998B', '#2E294E', '#F46036', '#E2C044'];
+ break;
+
+ case 'palette8':
+ this.colors = ['#662E9B', '#F86624', '#F9C80E', '#EA3546', '#43BCCD'];
+ break;
+
+ case 'palette9':
+ this.colors = ['#5C4742', '#A5978B', '#8D5B4C', '#5A2A27', '#C4BBAF'];
+ break;
+
+ case 'palette10':
+ this.colors = ['#A300D6', '#7D02EB', '#5653FE', '#2983FF', '#00B1F2'];
+ break;
+
+ default:
+ this.colors = ['#008FFB', '#00E396', '#FEB019', '#FF4560', '#775DD0'];
+ break;
+ }
+
+ return this.colors;
+ }
+ }]);
+
+ return Theme;
+ }();
+
+ var TitleSubtitle = /*#__PURE__*/function () {
+ function TitleSubtitle(ctx) {
+ _classCallCheck(this, TitleSubtitle);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(TitleSubtitle, [{
+ key: "draw",
+ value: function draw() {
+ this.drawTitleSubtitle('title');
+ this.drawTitleSubtitle('subtitle');
+ }
+ }, {
+ key: "drawTitleSubtitle",
+ value: function drawTitleSubtitle(type) {
+ var w = this.w;
+ var tsConfig = type === 'title' ? w.config.title : w.config.subtitle;
+ var x = w.globals.svgWidth / 2;
+ var y = tsConfig.offsetY;
+ var textAnchor = 'middle';
+
+ if (tsConfig.align === 'left') {
+ x = 10;
+ textAnchor = 'start';
+ } else if (tsConfig.align === 'right') {
+ x = w.globals.svgWidth - 10;
+ textAnchor = 'end';
+ }
+
+ x = x + tsConfig.offsetX;
+ y = y + parseInt(tsConfig.style.fontSize, 10) + tsConfig.margin / 2;
+
+ if (tsConfig.text !== undefined) {
+ var graphics = new Graphics(this.ctx);
+ var titleText = graphics.drawText({
+ x: x,
+ y: y,
+ text: tsConfig.text,
+ textAnchor: textAnchor,
+ fontSize: tsConfig.style.fontSize,
+ fontFamily: tsConfig.style.fontFamily,
+ fontWeight: tsConfig.style.fontWeight,
+ foreColor: tsConfig.style.color,
+ opacity: 1
+ });
+ titleText.node.setAttribute('class', "apexcharts-".concat(type, "-text"));
+ w.globals.dom.Paper.add(titleText);
+ }
+ }
+ }]);
+
+ return TitleSubtitle;
+ }();
+
+ var Helpers$3 = /*#__PURE__*/function () {
+ function Helpers(dCtx) {
+ _classCallCheck(this, Helpers);
+
+ this.w = dCtx.w;
+ this.dCtx = dCtx;
+ }
+ /**
+ * Get Chart Title/Subtitle Dimensions
+ * @memberof Dimensions
+ * @return {{width, height}}
+ **/
+
+
+ _createClass(Helpers, [{
+ key: "getTitleSubtitleCoords",
+ value: function getTitleSubtitleCoords(type) {
+ var w = this.w;
+ var width = 0;
+ var height = 0;
+ var floating = type === 'title' ? w.config.title.floating : w.config.subtitle.floating;
+ var el = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(type, "-text"));
+
+ if (el !== null && !floating) {
+ var coord = el.getBoundingClientRect();
+ width = coord.width;
+ height = w.globals.axisCharts ? coord.height + 5 : coord.height;
+ }
+
+ return {
+ width: width,
+ height: height
+ };
+ }
+ }, {
+ key: "getLegendsRect",
+ value: function getLegendsRect() {
+ var w = this.w;
+ var elLegendWrap = w.globals.dom.elLegendWrap;
+
+ if (!w.config.legend.height && (w.config.legend.position === 'top' || w.config.legend.position === 'bottom')) {
+ // avoid legend to take up all the space
+ elLegendWrap.style.maxHeight = w.globals.svgHeight / 2 + 'px';
+ }
+
+ var lgRect = Object.assign({}, Utils$1.getBoundingClientRect(elLegendWrap));
+
+ if (elLegendWrap !== null && !w.config.legend.floating && w.config.legend.show) {
+ this.dCtx.lgRect = {
+ x: lgRect.x,
+ y: lgRect.y,
+ height: lgRect.height,
+ width: lgRect.height === 0 ? 0 : lgRect.width
+ };
+ } else {
+ this.dCtx.lgRect = {
+ x: 0,
+ y: 0,
+ height: 0,
+ width: 0
+ };
+ } // if legend takes up all of the chart space, we need to restrict it.
+
+
+ if (w.config.legend.position === 'left' || w.config.legend.position === 'right') {
+ if (this.dCtx.lgRect.width * 1.5 > w.globals.svgWidth) {
+ this.dCtx.lgRect.width = w.globals.svgWidth / 1.5;
+ }
+ }
+
+ return this.dCtx.lgRect;
+ }
+ }, {
+ key: "getLargestStringFromMultiArr",
+ value: function getLargestStringFromMultiArr(val, arr) {
+ var w = this.w;
+ var valArr = val;
+
+ if (w.globals.isMultiLineX) {
+ // if the xaxis labels has multiline texts (array)
+ var maxArrs = arr.map(function (xl, idx) {
+ return Array.isArray(xl) ? xl.length : 1;
+ });
+ var maxArrLen = Math.max.apply(Math, _toConsumableArray(maxArrs));
+ var maxArrIndex = maxArrs.indexOf(maxArrLen);
+ valArr = arr[maxArrIndex];
+ }
+
+ return valArr;
+ }
+ }]);
+
+ return Helpers;
+ }();
+
+ var DimXAxis = /*#__PURE__*/function () {
+ function DimXAxis(dCtx) {
+ _classCallCheck(this, DimXAxis);
+
+ this.w = dCtx.w;
+ this.dCtx = dCtx;
+ }
+ /**
+ * Get X Axis Dimensions
+ * @memberof Dimensions
+ * @return {{width, height}}
+ **/
+
+
+ _createClass(DimXAxis, [{
+ key: "getxAxisLabelsCoords",
+ value: function getxAxisLabelsCoords() {
+ var w = this.w;
+ var xaxisLabels = w.globals.labels.slice();
+
+ if (w.config.xaxis.convertedCatToNumeric && xaxisLabels.length === 0) {
+ xaxisLabels = w.globals.categoryLabels;
+ }
+
+ var rect;
+
+ if (w.globals.timescaleLabels.length > 0) {
+ var coords = this.getxAxisTimeScaleLabelsCoords();
+ rect = {
+ width: coords.width,
+ height: coords.height
+ };
+ w.globals.rotateXLabels = false;
+ } else {
+ this.dCtx.lgWidthForSideLegends = (w.config.legend.position === 'left' || w.config.legend.position === 'right') && !w.config.legend.floating ? this.dCtx.lgRect.width : 0; // get the longest string from the labels array and also apply label formatter
+
+ var xlbFormatter = w.globals.xLabelFormatter; // prevent changing xaxisLabels to avoid issues in multi-yaxes - fix #522
+
+ var val = Utils$1.getLargestStringFromArr(xaxisLabels);
+ var valArr = this.dCtx.dimHelpers.getLargestStringFromMultiArr(val, xaxisLabels); // the labels gets changed for bar charts
+
+ if (w.globals.isBarHorizontal) {
+ val = w.globals.yAxisScale[0].result.reduce(function (a, b) {
+ return a.length > b.length ? a : b;
+ }, 0);
+ valArr = val;
+ }
+
+ var xFormat = new Formatters(this.dCtx.ctx);
+ var timestamp = val;
+ val = xFormat.xLabelFormat(xlbFormatter, val, timestamp, {
+ i: undefined,
+ dateFormatter: new DateTime(this.dCtx.ctx).formatDate,
+ w: w
+ });
+ valArr = xFormat.xLabelFormat(xlbFormatter, valArr, timestamp, {
+ i: undefined,
+ dateFormatter: new DateTime(this.dCtx.ctx).formatDate,
+ w: w
+ });
+
+ if (w.config.xaxis.convertedCatToNumeric && typeof val === 'undefined' || String(val).trim() === '') {
+ val = '1';
+ valArr = val;
+ }
+
+ var graphics = new Graphics(this.dCtx.ctx);
+ var xLabelrect = graphics.getTextRects(val, w.config.xaxis.labels.style.fontSize);
+ var xArrLabelrect = xLabelrect;
+
+ if (val !== valArr) {
+ xArrLabelrect = graphics.getTextRects(valArr, w.config.xaxis.labels.style.fontSize);
+ }
+
+ rect = {
+ width: xLabelrect.width >= xArrLabelrect.width ? xLabelrect.width : xArrLabelrect.width,
+ height: xLabelrect.height >= xArrLabelrect.height ? xLabelrect.height : xArrLabelrect.height
+ };
+
+ if (rect.width * xaxisLabels.length > w.globals.svgWidth - this.dCtx.lgWidthForSideLegends - this.dCtx.yAxisWidth - this.dCtx.gridPad.left - this.dCtx.gridPad.right && w.config.xaxis.labels.rotate !== 0 || w.config.xaxis.labels.rotateAlways) {
+ if (!w.globals.isBarHorizontal) {
+ w.globals.rotateXLabels = true;
+
+ var getRotatedTextRects = function getRotatedTextRects(text) {
+ return graphics.getTextRects(text, w.config.xaxis.labels.style.fontSize, w.config.xaxis.labels.style.fontFamily, "rotate(".concat(w.config.xaxis.labels.rotate, " 0 0)"), false);
+ };
+
+ xLabelrect = getRotatedTextRects(val);
+
+ if (val !== valArr) {
+ xArrLabelrect = getRotatedTextRects(valArr);
+ }
+
+ rect.height = (xLabelrect.height > xArrLabelrect.height ? xLabelrect.height : xArrLabelrect.height) / 1.5;
+ rect.width = xLabelrect.width > xArrLabelrect.width ? xLabelrect.width : xArrLabelrect.width;
+ }
+ } else {
+ w.globals.rotateXLabels = false;
+ }
+ }
+
+ if (!w.config.xaxis.labels.show) {
+ rect = {
+ width: 0,
+ height: 0
+ };
+ }
+
+ return {
+ width: rect.width,
+ height: rect.height
+ };
+ }
+ /**
+ * Get X Axis Label Group height
+ * @memberof Dimensions
+ * @return {{width, height}}
+ */
+
+ }, {
+ key: "getxAxisGroupLabelsCoords",
+ value: function getxAxisGroupLabelsCoords() {
+ var _w$config$xaxis$group;
+
+ var w = this.w;
+
+ if (!w.globals.hasXaxisGroups) {
+ return {
+ width: 0,
+ height: 0
+ };
+ }
+
+ var fontSize = ((_w$config$xaxis$group = w.config.xaxis.group.style) === null || _w$config$xaxis$group === void 0 ? void 0 : _w$config$xaxis$group.fontSize) || w.config.xaxis.labels.style.fontSize;
+ var xaxisLabels = w.globals.groups.map(function (g) {
+ return g.title;
+ });
+ var rect; // prevent changing xaxisLabels to avoid issues in multi-yaxes - fix #522
+
+ var val = Utils$1.getLargestStringFromArr(xaxisLabels);
+ var valArr = this.dCtx.dimHelpers.getLargestStringFromMultiArr(val, xaxisLabels);
+ var graphics = new Graphics(this.dCtx.ctx);
+ var xLabelrect = graphics.getTextRects(val, fontSize);
+ var xArrLabelrect = xLabelrect;
+
+ if (val !== valArr) {
+ xArrLabelrect = graphics.getTextRects(valArr, fontSize);
+ }
+
+ rect = {
+ width: xLabelrect.width >= xArrLabelrect.width ? xLabelrect.width : xArrLabelrect.width,
+ height: xLabelrect.height >= xArrLabelrect.height ? xLabelrect.height : xArrLabelrect.height
+ };
+
+ if (!w.config.xaxis.labels.show) {
+ rect = {
+ width: 0,
+ height: 0
+ };
+ }
+
+ return {
+ width: rect.width,
+ height: rect.height
+ };
+ }
+ /**
+ * Get X Axis Title Dimensions
+ * @memberof Dimensions
+ * @return {{width, height}}
+ **/
+
+ }, {
+ key: "getxAxisTitleCoords",
+ value: function getxAxisTitleCoords() {
+ var w = this.w;
+ var width = 0;
+ var height = 0;
+
+ if (w.config.xaxis.title.text !== undefined) {
+ var graphics = new Graphics(this.dCtx.ctx);
+ var rect = graphics.getTextRects(w.config.xaxis.title.text, w.config.xaxis.title.style.fontSize);
+ width = rect.width;
+ height = rect.height;
+ }
+
+ return {
+ width: width,
+ height: height
+ };
+ }
+ }, {
+ key: "getxAxisTimeScaleLabelsCoords",
+ value: function getxAxisTimeScaleLabelsCoords() {
+ var w = this.w;
+ var rect;
+ this.dCtx.timescaleLabels = w.globals.timescaleLabels.slice();
+ var labels = this.dCtx.timescaleLabels.map(function (label) {
+ return label.value;
+ }); // get the longest string from the labels array and also apply label formatter to it
+
+ var val = labels.reduce(function (a, b) {
+ // if undefined, maybe user didn't pass the datetime(x) values
+ if (typeof a === 'undefined') {
+ console.error('You have possibly supplied invalid Date format. Please supply a valid JavaScript Date');
+ return 0;
+ } else {
+ return a.length > b.length ? a : b;
+ }
+ }, 0);
+ var graphics = new Graphics(this.dCtx.ctx);
+ rect = graphics.getTextRects(val, w.config.xaxis.labels.style.fontSize);
+ var totalWidthRotated = rect.width * 1.05 * labels.length;
+
+ if (totalWidthRotated > w.globals.gridWidth && w.config.xaxis.labels.rotate !== 0) {
+ w.globals.overlappingXLabels = true;
+ }
+
+ return rect;
+ } // In certain cases, the last labels gets cropped in xaxis.
+ // Hence, we add some additional padding based on the label length to avoid the last label being cropped or we don't draw it at all
+
+ }, {
+ key: "additionalPaddingXLabels",
+ value: function additionalPaddingXLabels(xaxisLabelCoords) {
+ var _this = this;
+
+ var w = this.w;
+ var gl = w.globals;
+ var cnf = w.config;
+ var xtype = cnf.xaxis.type;
+ var lbWidth = xaxisLabelCoords.width;
+ gl.skipLastTimelinelabel = false;
+ gl.skipFirstTimelinelabel = false;
+ var isBarOpposite = w.config.yaxis[0].opposite && w.globals.isBarHorizontal;
+
+ var isCollapsed = function isCollapsed(i) {
+ return gl.collapsedSeriesIndices.indexOf(i) !== -1;
+ };
+
+ var rightPad = function rightPad(yaxe) {
+ if (_this.dCtx.timescaleLabels && _this.dCtx.timescaleLabels.length) {
+ // for timeline labels, we take the last label and check if it exceeds gridWidth
+ var firstimescaleLabel = _this.dCtx.timescaleLabels[0];
+ var lastTimescaleLabel = _this.dCtx.timescaleLabels[_this.dCtx.timescaleLabels.length - 1];
+ var lastLabelPosition = lastTimescaleLabel.position + lbWidth / 1.75 - _this.dCtx.yAxisWidthRight;
+ var firstLabelPosition = firstimescaleLabel.position - lbWidth / 1.75 + _this.dCtx.yAxisWidthLeft;
+ var lgRightRectWidth = w.config.legend.position === 'right' && _this.dCtx.lgRect.width > 0 ? _this.dCtx.lgRect.width : 0;
+
+ if (lastLabelPosition > gl.svgWidth - gl.translateX - lgRightRectWidth) {
+ gl.skipLastTimelinelabel = true;
+ }
+
+ if (firstLabelPosition < -((!yaxe.show || yaxe.floating) && (cnf.chart.type === 'bar' || cnf.chart.type === 'candlestick' || cnf.chart.type === 'rangeBar' || cnf.chart.type === 'boxPlot') ? lbWidth / 1.75 : 10)) {
+ gl.skipFirstTimelinelabel = true;
+ }
+ } else if (xtype === 'datetime') {
+ // If user has enabled DateTime, but uses own's formatter
+ if (_this.dCtx.gridPad.right < lbWidth && !gl.rotateXLabels) {
+ gl.skipLastTimelinelabel = true;
+ }
+ } else if (xtype !== 'datetime') {
+ if (_this.dCtx.gridPad.right < lbWidth / 2 - _this.dCtx.yAxisWidthRight && !gl.rotateXLabels && !w.config.xaxis.labels.trim && (w.config.xaxis.tickPlacement !== 'between' || w.globals.isBarHorizontal)) {
+ _this.dCtx.xPadRight = lbWidth / 2 + 1;
+ }
+ }
+ };
+
+ var padYAxe = function padYAxe(yaxe, i) {
+ if (cnf.yaxis.length > 1 && isCollapsed(i)) return;
+ rightPad(yaxe);
+ };
+
+ cnf.yaxis.forEach(function (yaxe, i) {
+ if (isBarOpposite) {
+ if (_this.dCtx.gridPad.left < lbWidth) {
+ _this.dCtx.xPadLeft = lbWidth / 2 + 1;
+ }
+
+ _this.dCtx.xPadRight = lbWidth / 2 + 1;
+ } else {
+ padYAxe(yaxe, i);
+ }
+ });
+ }
+ }]);
+
+ return DimXAxis;
+ }();
+
+ var DimYAxis = /*#__PURE__*/function () {
+ function DimYAxis(dCtx) {
+ _classCallCheck(this, DimYAxis);
+
+ this.w = dCtx.w;
+ this.dCtx = dCtx;
+ }
+ /**
+ * Get Y Axis Dimensions
+ * @memberof Dimensions
+ * @return {{width, height}}
+ **/
+
+
+ _createClass(DimYAxis, [{
+ key: "getyAxisLabelsCoords",
+ value: function getyAxisLabelsCoords() {
+ var _this = this;
+
+ var w = this.w;
+ var width = 0;
+ var height = 0;
+ var ret = [];
+ var labelPad = 10;
+ var axesUtils = new AxesUtils(this.dCtx.ctx);
+ w.config.yaxis.map(function (yaxe, index) {
+ var formatterArgs = {
+ seriesIndex: index,
+ dataPointIndex: -1,
+ w: w
+ };
+ var yS = w.globals.yAxisScale[index];
+ var yAxisMinWidth = 0;
+ if (!axesUtils.isYAxisHidden(index) && yaxe.labels.show && yaxe.labels.minWidth !== undefined) yAxisMinWidth = yaxe.labels.minWidth;
+
+ if (!axesUtils.isYAxisHidden(index) && yaxe.labels.show && yS.result.length) {
+ var lbFormatter = w.globals.yLabelFormatters[index];
+ var minV = yS.niceMin === Number.MIN_VALUE ? 0 : yS.niceMin;
+ var val = yS.result.reduce(function (acc, curr) {
+ var _String, _String2;
+
+ return ((_String = String(lbFormatter(acc, formatterArgs))) === null || _String === void 0 ? void 0 : _String.length) > ((_String2 = String(lbFormatter(curr, formatterArgs))) === null || _String2 === void 0 ? void 0 : _String2.length) ? acc : curr;
+ }, minV);
+ val = lbFormatter(val, formatterArgs); // the second parameter -1 is the index of tick which user can use in the formatter
+
+ var valArr = val; // if user has specified a custom formatter, and the result is null or empty, we need to discard the formatter and take the value as it is.
+
+ if (typeof val === 'undefined' || val.length === 0) {
+ val = yS.niceMax;
+ }
+
+ if (w.globals.isBarHorizontal) {
+ labelPad = 0;
+ var barYaxisLabels = w.globals.labels.slice(); // get the longest string from the labels array and also apply label formatter to it
+
+ val = Utils$1.getLargestStringFromArr(barYaxisLabels);
+ val = lbFormatter(val, {
+ seriesIndex: index,
+ dataPointIndex: -1,
+ w: w
+ });
+ valArr = _this.dCtx.dimHelpers.getLargestStringFromMultiArr(val, barYaxisLabels);
+ }
+
+ var graphics = new Graphics(_this.dCtx.ctx);
+ var rotateStr = 'rotate('.concat(yaxe.labels.rotate, ' 0 0)');
+ var rect = graphics.getTextRects(val, yaxe.labels.style.fontSize, yaxe.labels.style.fontFamily, rotateStr, false);
+ var arrLabelrect = rect;
+
+ if (val !== valArr) {
+ arrLabelrect = graphics.getTextRects(valArr, yaxe.labels.style.fontSize, yaxe.labels.style.fontFamily, rotateStr, false);
+ }
+
+ ret.push({
+ width: (yAxisMinWidth > arrLabelrect.width || yAxisMinWidth > rect.width ? yAxisMinWidth : arrLabelrect.width > rect.width ? arrLabelrect.width : rect.width) + labelPad,
+ height: arrLabelrect.height > rect.height ? arrLabelrect.height : rect.height
+ });
+ } else {
+ ret.push({
+ width: width,
+ height: height
+ });
+ }
+ });
+ return ret;
+ }
+ /**
+ * Get Y Axis Dimensions
+ * @memberof Dimensions
+ * @return {{width, height}}
+ **/
+
+ }, {
+ key: "getyAxisTitleCoords",
+ value: function getyAxisTitleCoords() {
+ var _this2 = this;
+
+ var w = this.w;
+ var ret = [];
+ w.config.yaxis.map(function (yaxe, index) {
+ if (yaxe.show && yaxe.title.text !== undefined) {
+ var graphics = new Graphics(_this2.dCtx.ctx);
+ var rotateStr = 'rotate('.concat(yaxe.title.rotate, ' 0 0)');
+ var rect = graphics.getTextRects(yaxe.title.text, yaxe.title.style.fontSize, yaxe.title.style.fontFamily, rotateStr, false);
+ ret.push({
+ width: rect.width,
+ height: rect.height
+ });
+ } else {
+ ret.push({
+ width: 0,
+ height: 0
+ });
+ }
+ });
+ return ret;
+ }
+ }, {
+ key: "getTotalYAxisWidth",
+ value: function getTotalYAxisWidth() {
+ var w = this.w;
+ var yAxisWidth = 0;
+ var yAxisWidthLeft = 0;
+ var yAxisWidthRight = 0;
+ var padding = w.globals.yAxisScale.length > 1 ? 10 : 0;
+ var axesUtils = new AxesUtils(this.dCtx.ctx);
+
+ var isHiddenYAxis = function isHiddenYAxis(index) {
+ return w.globals.ignoreYAxisIndexes.indexOf(index) > -1;
+ };
+
+ var padForLabelTitle = function padForLabelTitle(coord, index) {
+ var floating = w.config.yaxis[index].floating;
+ var width = 0;
+
+ if (coord.width > 0 && !floating) {
+ width = coord.width + padding;
+
+ if (isHiddenYAxis(index)) {
+ width = width - coord.width - padding;
+ }
+ } else {
+ width = floating || axesUtils.isYAxisHidden(index) ? 0 : 5;
+ }
+
+ w.config.yaxis[index].opposite ? yAxisWidthRight = yAxisWidthRight + width : yAxisWidthLeft = yAxisWidthLeft + width;
+ yAxisWidth = yAxisWidth + width;
+ };
+
+ w.globals.yLabelsCoords.map(function (yLabelCoord, index) {
+ padForLabelTitle(yLabelCoord, index);
+ });
+ w.globals.yTitleCoords.map(function (yTitleCoord, index) {
+ padForLabelTitle(yTitleCoord, index);
+ });
+
+ if (w.globals.isBarHorizontal && !w.config.yaxis[0].floating) {
+ yAxisWidth = w.globals.yLabelsCoords[0].width + w.globals.yTitleCoords[0].width + 15;
+ }
+
+ this.dCtx.yAxisWidthLeft = yAxisWidthLeft;
+ this.dCtx.yAxisWidthRight = yAxisWidthRight;
+ return yAxisWidth;
+ }
+ }]);
+
+ return DimYAxis;
+ }();
+
+ var DimGrid = /*#__PURE__*/function () {
+ function DimGrid(dCtx) {
+ _classCallCheck(this, DimGrid);
+
+ this.w = dCtx.w;
+ this.dCtx = dCtx;
+ }
+
+ _createClass(DimGrid, [{
+ key: "gridPadForColumnsInNumericAxis",
+ value: function gridPadForColumnsInNumericAxis(gridWidth) {
+ var w = this.w;
+
+ if (w.globals.noData || w.globals.allSeriesCollapsed) {
+ return 0;
+ }
+
+ var hasBar = function hasBar(type) {
+ return type === 'bar' || type === 'rangeBar' || type === 'candlestick' || type === 'boxPlot';
+ };
+
+ var type = w.config.chart.type;
+ var barWidth = 0;
+ var seriesLen = hasBar(type) ? w.config.series.length : 1;
+
+ if (w.globals.comboBarCount > 0) {
+ seriesLen = w.globals.comboBarCount;
+ }
+
+ w.globals.collapsedSeries.forEach(function (c) {
+ if (hasBar(c.type)) {
+ seriesLen = seriesLen - 1;
+ }
+ });
+
+ if (w.config.chart.stacked) {
+ seriesLen = 1;
+ }
+
+ var barsPresent = hasBar(type) || w.globals.comboBarCount > 0;
+
+ if (barsPresent && w.globals.isXNumeric && !w.globals.isBarHorizontal && seriesLen > 0) {
+ var xRatio = 0;
+ var xRange = Math.abs(w.globals.initialMaxX - w.globals.initialMinX);
+
+ if (xRange <= 3) {
+ xRange = w.globals.dataPoints;
+ }
+
+ xRatio = xRange / gridWidth;
+ var xDivision; // max barwidth should be equal to minXDiff to avoid overlap
+
+ if (w.globals.minXDiff && w.globals.minXDiff / xRatio > 0) {
+ xDivision = w.globals.minXDiff / xRatio;
+ }
+
+ if (xDivision > gridWidth / 2) {
+ xDivision = xDivision / 2;
+ } // Here, barWidth is assumed to be the width occupied by a group of bars.
+ // There will be one bar in the group for each series plotted.
+ // Note: This version of the following math is different to that over in
+ // Helpers.js. Don't assume they should be the same. Over there,
+ // xDivision is computed differently and it's used on different charts.
+ // They were the same, but the solution to
+ // https://github.com/apexcharts/apexcharts.js/issues/4178
+ // was to remove the division by seriesLen.
+
+
+ barWidth = xDivision * parseInt(w.config.plotOptions.bar.columnWidth, 10) / 100;
+
+ if (barWidth < 1) {
+ barWidth = 1;
+ }
+
+ w.globals.barPadForNumericAxis = barWidth;
+ }
+
+ return barWidth;
+ }
+ }, {
+ key: "gridPadFortitleSubtitle",
+ value: function gridPadFortitleSubtitle() {
+ var _this = this;
+
+ var w = this.w;
+ var gl = w.globals;
+ var gridShrinkOffset = this.dCtx.isSparkline || !w.globals.axisCharts ? 0 : 10;
+ var titleSubtitle = ['title', 'subtitle'];
+ titleSubtitle.forEach(function (t) {
+ if (w.config[t].text !== undefined) {
+ gridShrinkOffset += w.config[t].margin;
+ } else {
+ gridShrinkOffset += _this.dCtx.isSparkline || !w.globals.axisCharts ? 0 : 5;
+ }
+ });
+
+ if (w.config.legend.show && w.config.legend.position === 'bottom' && !w.config.legend.floating && !w.globals.axisCharts) {
+ gridShrinkOffset += 10;
+ }
+
+ var titleCoords = this.dCtx.dimHelpers.getTitleSubtitleCoords('title');
+ var subtitleCoords = this.dCtx.dimHelpers.getTitleSubtitleCoords('subtitle');
+ gl.gridHeight = gl.gridHeight - titleCoords.height - subtitleCoords.height - gridShrinkOffset;
+ gl.translateY = gl.translateY + titleCoords.height + subtitleCoords.height + gridShrinkOffset;
+ }
+ }, {
+ key: "setGridXPosForDualYAxis",
+ value: function setGridXPosForDualYAxis(yTitleCoords, yaxisLabelCoords) {
+ var w = this.w;
+ var axesUtils = new AxesUtils(this.dCtx.ctx);
+ w.config.yaxis.map(function (yaxe, index) {
+ if (w.globals.ignoreYAxisIndexes.indexOf(index) === -1 && !yaxe.floating && !axesUtils.isYAxisHidden(index)) {
+ if (yaxe.opposite) {
+ w.globals.translateX = w.globals.translateX - (yaxisLabelCoords[index].width + yTitleCoords[index].width) - parseInt(w.config.yaxis[index].labels.style.fontSize, 10) / 1.2 - 12;
+ } // fixes apexcharts.js#1599
+
+
+ if (w.globals.translateX < 2) {
+ w.globals.translateX = 2;
+ }
+ }
+ });
+ }
+ }]);
+
+ return DimGrid;
+ }();
+
+ /**
+ * ApexCharts Dimensions Class for calculating rects of all elements that are drawn and will be drawn.
+ *
+ * @module Dimensions
+ **/
+
+ var Dimensions = /*#__PURE__*/function () {
+ function Dimensions(ctx) {
+ _classCallCheck(this, Dimensions);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.lgRect = {};
+ this.yAxisWidth = 0;
+ this.yAxisWidthLeft = 0;
+ this.yAxisWidthRight = 0;
+ this.xAxisHeight = 0;
+ this.isSparkline = this.w.config.chart.sparkline.enabled;
+ this.dimHelpers = new Helpers$3(this);
+ this.dimYAxis = new DimYAxis(this);
+ this.dimXAxis = new DimXAxis(this);
+ this.dimGrid = new DimGrid(this);
+ this.lgWidthForSideLegends = 0;
+ this.gridPad = this.w.config.grid.padding;
+ this.xPadRight = 0;
+ this.xPadLeft = 0;
+ }
+ /**
+ * @memberof Dimensions
+ * @param {object} w - chart context
+ **/
+
+
+ _createClass(Dimensions, [{
+ key: "plotCoords",
+ value: function plotCoords() {
+ var _this = this;
+
+ var w = this.w;
+ var gl = w.globals;
+ this.lgRect = this.dimHelpers.getLegendsRect();
+
+ if (this.isSparkline) {
+ if (w.config.markers.discrete.length > 0 || w.config.markers.size > 0) {
+ Object.entries(this.gridPad).forEach(function (_ref) {
+ var _ref2 = _slicedToArray(_ref, 2),
+ k = _ref2[0],
+ v = _ref2[1];
+
+ _this.gridPad[k] = Math.max(v, _this.w.globals.markers.largestSize / 1.5);
+ });
+ }
+
+ this.gridPad.top = Math.max(w.config.stroke.width / 2, this.gridPad.top);
+ this.gridPad.bottom = Math.max(w.config.stroke.width / 2, this.gridPad.bottom);
+ }
+
+ if (gl.axisCharts) {
+ // for line / area / scatter / column
+ this.setDimensionsForAxisCharts();
+ } else {
+ // for pie / donuts / circle
+ this.setDimensionsForNonAxisCharts();
+ }
+
+ this.dimGrid.gridPadFortitleSubtitle(); // after calculating everything, apply padding set by user
+
+ gl.gridHeight = gl.gridHeight - this.gridPad.top - this.gridPad.bottom;
+ gl.gridWidth = gl.gridWidth - this.gridPad.left - this.gridPad.right - this.xPadRight - this.xPadLeft;
+ var barWidth = this.dimGrid.gridPadForColumnsInNumericAxis(gl.gridWidth);
+ gl.gridWidth = gl.gridWidth - barWidth * 2;
+ gl.translateX = gl.translateX + this.gridPad.left + this.xPadLeft + (barWidth > 0 ? barWidth + 4 : 0);
+ gl.translateY = gl.translateY + this.gridPad.top;
+ }
+ }, {
+ key: "setDimensionsForAxisCharts",
+ value: function setDimensionsForAxisCharts() {
+ var _this2 = this;
+
+ var w = this.w;
+ var gl = w.globals;
+ var yaxisLabelCoords = this.dimYAxis.getyAxisLabelsCoords();
+ var yTitleCoords = this.dimYAxis.getyAxisTitleCoords();
+ w.globals.yLabelsCoords = [];
+ w.globals.yTitleCoords = [];
+ w.config.yaxis.map(function (yaxe, index) {
+ // store the labels and titles coords in global vars
+ w.globals.yLabelsCoords.push({
+ width: yaxisLabelCoords[index].width,
+ index: index
+ });
+ w.globals.yTitleCoords.push({
+ width: yTitleCoords[index].width,
+ index: index
+ });
+ });
+ this.yAxisWidth = this.dimYAxis.getTotalYAxisWidth();
+ var xaxisLabelCoords = this.dimXAxis.getxAxisLabelsCoords();
+ var xaxisGroupLabelCoords = this.dimXAxis.getxAxisGroupLabelsCoords();
+ var xtitleCoords = this.dimXAxis.getxAxisTitleCoords();
+ this.conditionalChecksForAxisCoords(xaxisLabelCoords, xtitleCoords, xaxisGroupLabelCoords);
+ gl.translateXAxisY = w.globals.rotateXLabels ? this.xAxisHeight / 8 : -4;
+ gl.translateXAxisX = w.globals.rotateXLabels && w.globals.isXNumeric && w.config.xaxis.labels.rotate <= -45 ? -this.xAxisWidth / 4 : 0;
+
+ if (w.globals.isBarHorizontal) {
+ gl.rotateXLabels = false;
+ gl.translateXAxisY = -1 * (parseInt(w.config.xaxis.labels.style.fontSize, 10) / 1.5);
+ }
+
+ gl.translateXAxisY = gl.translateXAxisY + w.config.xaxis.labels.offsetY;
+ gl.translateXAxisX = gl.translateXAxisX + w.config.xaxis.labels.offsetX;
+ var yAxisWidth = this.yAxisWidth;
+ var xAxisHeight = this.xAxisHeight;
+ gl.xAxisLabelsHeight = this.xAxisHeight - xtitleCoords.height;
+ gl.xAxisGroupLabelsHeight = gl.xAxisLabelsHeight - xaxisLabelCoords.height;
+ gl.xAxisLabelsWidth = this.xAxisWidth;
+ gl.xAxisHeight = this.xAxisHeight;
+ var translateY = 10;
+
+ if (w.config.chart.type === 'radar' || this.isSparkline) {
+ yAxisWidth = 0;
+ xAxisHeight = gl.goldenPadding;
+ }
+
+ if (this.isSparkline) {
+ this.lgRect = {
+ height: 0,
+ width: 0
+ };
+ }
+
+ if (this.isSparkline || w.config.chart.type === 'treemap') {
+ yAxisWidth = 0;
+ xAxisHeight = 0;
+ translateY = 0;
+ }
+
+ if (!this.isSparkline) {
+ this.dimXAxis.additionalPaddingXLabels(xaxisLabelCoords);
+ }
+
+ var legendTopBottom = function legendTopBottom() {
+ gl.translateX = yAxisWidth;
+ gl.gridHeight = gl.svgHeight - _this2.lgRect.height - xAxisHeight - (!_this2.isSparkline && w.config.chart.type !== 'treemap' ? w.globals.rotateXLabels ? 10 : 15 : 0);
+ gl.gridWidth = gl.svgWidth - yAxisWidth;
+ };
+
+ if (w.config.xaxis.position === 'top') translateY = gl.xAxisHeight - w.config.xaxis.axisTicks.height - 5;
+
+ switch (w.config.legend.position) {
+ case 'bottom':
+ gl.translateY = translateY;
+ legendTopBottom();
+ break;
+
+ case 'top':
+ gl.translateY = this.lgRect.height + translateY;
+ legendTopBottom();
+ break;
+
+ case 'left':
+ gl.translateY = translateY;
+ gl.translateX = this.lgRect.width + yAxisWidth;
+ gl.gridHeight = gl.svgHeight - xAxisHeight - 12;
+ gl.gridWidth = gl.svgWidth - this.lgRect.width - yAxisWidth;
+ break;
+
+ case 'right':
+ gl.translateY = translateY;
+ gl.translateX = yAxisWidth;
+ gl.gridHeight = gl.svgHeight - xAxisHeight - 12;
+ gl.gridWidth = gl.svgWidth - this.lgRect.width - yAxisWidth - 5;
+ break;
+
+ default:
+ throw new Error('Legend position not supported');
+ }
+
+ this.dimGrid.setGridXPosForDualYAxis(yTitleCoords, yaxisLabelCoords); // after drawing everything, set the Y axis positions
+
+ var objyAxis = new YAxis(this.ctx);
+ objyAxis.setYAxisXPosition(yaxisLabelCoords, yTitleCoords);
+ }
+ }, {
+ key: "setDimensionsForNonAxisCharts",
+ value: function setDimensionsForNonAxisCharts() {
+ var w = this.w;
+ var gl = w.globals;
+ var cnf = w.config;
+ var xPad = 0;
+
+ if (w.config.legend.show && !w.config.legend.floating) {
+ xPad = 20;
+ }
+
+ var type = cnf.chart.type === 'pie' || cnf.chart.type === 'polarArea' || cnf.chart.type === 'donut' ? 'pie' : 'radialBar';
+ var offY = cnf.plotOptions[type].offsetY;
+ var offX = cnf.plotOptions[type].offsetX;
+
+ if (!cnf.legend.show || cnf.legend.floating) {
+ gl.gridHeight = gl.svgHeight - cnf.grid.padding.left + cnf.grid.padding.right;
+ gl.gridWidth = gl.gridHeight;
+ gl.translateY = offY;
+ gl.translateX = offX + (gl.svgWidth - gl.gridWidth) / 2;
+ return;
+ }
+
+ switch (cnf.legend.position) {
+ case 'bottom':
+ gl.gridHeight = gl.svgHeight - this.lgRect.height - gl.goldenPadding;
+ gl.gridWidth = gl.svgWidth;
+ gl.translateY = offY - 10;
+ gl.translateX = offX + (gl.svgWidth - gl.gridWidth) / 2;
+ break;
+
+ case 'top':
+ gl.gridHeight = gl.svgHeight - this.lgRect.height - gl.goldenPadding;
+ gl.gridWidth = gl.svgWidth;
+ gl.translateY = this.lgRect.height + offY + 10;
+ gl.translateX = offX + (gl.svgWidth - gl.gridWidth) / 2;
+ break;
+
+ case 'left':
+ gl.gridWidth = gl.svgWidth - this.lgRect.width - xPad;
+ gl.gridHeight = cnf.chart.height !== 'auto' ? gl.svgHeight : gl.gridWidth;
+ gl.translateY = offY;
+ gl.translateX = offX + this.lgRect.width + xPad;
+ break;
+
+ case 'right':
+ gl.gridWidth = gl.svgWidth - this.lgRect.width - xPad - 5;
+ gl.gridHeight = cnf.chart.height !== 'auto' ? gl.svgHeight : gl.gridWidth;
+ gl.translateY = offY;
+ gl.translateX = offX + 10;
+ break;
+
+ default:
+ throw new Error('Legend position not supported');
+ }
+ }
+ }, {
+ key: "conditionalChecksForAxisCoords",
+ value: function conditionalChecksForAxisCoords(xaxisLabelCoords, xtitleCoords, xaxisGroupLabelCoords) {
+ var w = this.w;
+ var xAxisNum = w.globals.hasXaxisGroups ? 2 : 1;
+ var baseXAxisHeight = xaxisGroupLabelCoords.height + xaxisLabelCoords.height + xtitleCoords.height;
+ var xAxisHeightMultiplicate = w.globals.isMultiLineX ? 1.2 : w.globals.LINE_HEIGHT_RATIO;
+ var rotatedXAxisOffset = w.globals.rotateXLabels ? 22 : 10;
+ var rotatedXAxisLegendOffset = w.globals.rotateXLabels && w.config.legend.position === 'bottom';
+ var additionalOffset = rotatedXAxisLegendOffset ? 10 : 0;
+ this.xAxisHeight = baseXAxisHeight * xAxisHeightMultiplicate + xAxisNum * rotatedXAxisOffset + additionalOffset;
+ this.xAxisWidth = xaxisLabelCoords.width;
+
+ if (this.xAxisHeight - xtitleCoords.height > w.config.xaxis.labels.maxHeight) {
+ this.xAxisHeight = w.config.xaxis.labels.maxHeight;
+ }
+
+ if (w.config.xaxis.labels.minHeight && this.xAxisHeight < w.config.xaxis.labels.minHeight) {
+ this.xAxisHeight = w.config.xaxis.labels.minHeight;
+ }
+
+ if (w.config.xaxis.floating) {
+ this.xAxisHeight = 0;
+ }
+
+ var minYAxisWidth = 0;
+ var maxYAxisWidth = 0;
+ w.config.yaxis.forEach(function (y) {
+ minYAxisWidth += y.labels.minWidth;
+ maxYAxisWidth += y.labels.maxWidth;
+ });
+
+ if (this.yAxisWidth < minYAxisWidth) {
+ this.yAxisWidth = minYAxisWidth;
+ }
+
+ if (this.yAxisWidth > maxYAxisWidth) {
+ this.yAxisWidth = maxYAxisWidth;
+ }
+ }
+ }]);
+
+ return Dimensions;
+ }();
+
+ var Helpers$2 = /*#__PURE__*/function () {
+ function Helpers(lgCtx) {
+ _classCallCheck(this, Helpers);
+
+ this.w = lgCtx.w;
+ this.lgCtx = lgCtx;
+ }
+
+ _createClass(Helpers, [{
+ key: "getLegendStyles",
+ value: function getLegendStyles() {
+ var _this$lgCtx$ctx, _this$lgCtx$ctx$opts, _this$lgCtx$ctx$opts$;
+
+ var stylesheet = document.createElement('style');
+ stylesheet.setAttribute('type', 'text/css');
+ var nonce = ((_this$lgCtx$ctx = this.lgCtx.ctx) === null || _this$lgCtx$ctx === void 0 ? void 0 : (_this$lgCtx$ctx$opts = _this$lgCtx$ctx.opts) === null || _this$lgCtx$ctx$opts === void 0 ? void 0 : (_this$lgCtx$ctx$opts$ = _this$lgCtx$ctx$opts.chart) === null || _this$lgCtx$ctx$opts$ === void 0 ? void 0 : _this$lgCtx$ctx$opts$.nonce) || this.w.config.chart.nonce;
+
+ if (nonce) {
+ stylesheet.setAttribute('nonce', nonce);
+ }
+
+ var text = "\n .apexcharts-legend {\n display: flex;\n overflow: auto;\n padding: 0 10px;\n }\n .apexcharts-legend.apx-legend-position-bottom, .apexcharts-legend.apx-legend-position-top {\n flex-wrap: wrap\n }\n .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left {\n flex-direction: column;\n bottom: 0;\n }\n .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-left, .apexcharts-legend.apx-legend-position-top.apexcharts-align-left, .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left {\n justify-content: flex-start;\n }\n .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center, .apexcharts-legend.apx-legend-position-top.apexcharts-align-center {\n justify-content: center;\n }\n .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-right, .apexcharts-legend.apx-legend-position-top.apexcharts-align-right {\n justify-content: flex-end;\n }\n .apexcharts-legend-series {\n cursor: pointer;\n line-height: normal;\n }\n .apexcharts-legend.apx-legend-position-bottom .apexcharts-legend-series, .apexcharts-legend.apx-legend-position-top .apexcharts-legend-series{\n display: flex;\n align-items: center;\n }\n .apexcharts-legend-text {\n position: relative;\n font-size: 14px;\n }\n .apexcharts-legend-text *, .apexcharts-legend-marker * {\n pointer-events: none;\n }\n .apexcharts-legend-marker {\n position: relative;\n display: inline-block;\n cursor: pointer;\n margin-right: 3px;\n border-style: solid;\n }\n\n .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series, .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series{\n display: inline-block;\n }\n .apexcharts-legend-series.apexcharts-no-click {\n cursor: auto;\n }\n .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series {\n display: none !important;\n }\n .apexcharts-inactive-legend {\n opacity: 0.45;\n }";
+ var rules = document.createTextNode(text);
+ stylesheet.appendChild(rules);
+ return stylesheet;
+ }
+ }, {
+ key: "getLegendBBox",
+ value: function getLegendBBox() {
+ var w = this.w;
+ var currLegendsWrap = w.globals.dom.baseEl.querySelector('.apexcharts-legend');
+ var currLegendsWrapRect = currLegendsWrap.getBoundingClientRect();
+ var currLegendsWrapWidth = currLegendsWrapRect.width;
+ var currLegendsWrapHeight = currLegendsWrapRect.height;
+ return {
+ clwh: currLegendsWrapHeight,
+ clww: currLegendsWrapWidth
+ };
+ }
+ }, {
+ key: "appendToForeignObject",
+ value: function appendToForeignObject() {
+ var gl = this.w.globals;
+ gl.dom.elLegendForeign.appendChild(this.getLegendStyles());
+ }
+ }, {
+ key: "toggleDataSeries",
+ value: function toggleDataSeries(seriesCnt, isHidden) {
+ var _this = this;
+
+ var w = this.w;
+
+ if (w.globals.axisCharts || w.config.chart.type === 'radialBar') {
+ w.globals.resized = true; // we don't want initial animations again
+
+ var seriesEl = null;
+ var realIndex = null; // yes, make it null. 1 series will rise at a time
+
+ w.globals.risingSeries = [];
+
+ if (w.globals.axisCharts) {
+ seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(seriesCnt, "']"));
+ realIndex = parseInt(seriesEl.getAttribute('data:realIndex'), 10);
+ } else {
+ seriesEl = w.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(seriesCnt + 1, "']"));
+ realIndex = parseInt(seriesEl.getAttribute('rel'), 10) - 1;
+ }
+
+ if (isHidden) {
+ var seriesToMakeVisible = [{
+ cs: w.globals.collapsedSeries,
+ csi: w.globals.collapsedSeriesIndices
+ }, {
+ cs: w.globals.ancillaryCollapsedSeries,
+ csi: w.globals.ancillaryCollapsedSeriesIndices
+ }];
+ seriesToMakeVisible.forEach(function (r) {
+ _this.riseCollapsedSeries(r.cs, r.csi, realIndex);
+ });
+ } else {
+ this.hideSeries({
+ seriesEl: seriesEl,
+ realIndex: realIndex
+ });
+ }
+ } else {
+ // for non-axis charts i.e pie / donuts
+ var _seriesEl = w.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(seriesCnt + 1, "'] path"));
+
+ var type = w.config.chart.type;
+
+ if (type === 'pie' || type === 'polarArea' || type === 'donut') {
+ var dataLabels = w.config.plotOptions.pie.donut.labels;
+ var graphics = new Graphics(this.lgCtx.ctx);
+ graphics.pathMouseDown(_seriesEl.members[0], null);
+ this.lgCtx.ctx.pie.printDataLabelsInner(_seriesEl.members[0].node, dataLabels);
+ }
+
+ _seriesEl.fire('click');
+ }
+ }
+ }, {
+ key: "hideSeries",
+ value: function hideSeries(_ref) {
+ var seriesEl = _ref.seriesEl,
+ realIndex = _ref.realIndex;
+ var w = this.w;
+ var series = Utils$1.clone(w.config.series);
+
+ if (w.globals.axisCharts) {
+ var yaxis = w.config.yaxis[w.globals.seriesYAxisReverseMap[realIndex]];
+
+ if (yaxis && yaxis.show && yaxis.showAlways) {
+ if (w.globals.ancillaryCollapsedSeriesIndices.indexOf(realIndex) < 0) {
+ w.globals.ancillaryCollapsedSeries.push({
+ index: realIndex,
+ data: series[realIndex].data.slice(),
+ type: seriesEl.parentNode.className.baseVal.split('-')[1]
+ });
+ w.globals.ancillaryCollapsedSeriesIndices.push(realIndex);
+ }
+ } else {
+ if (w.globals.collapsedSeriesIndices.indexOf(realIndex) < 0) {
+ w.globals.collapsedSeries.push({
+ index: realIndex,
+ data: series[realIndex].data.slice(),
+ type: seriesEl.parentNode.className.baseVal.split('-')[1]
+ });
+ w.globals.collapsedSeriesIndices.push(realIndex);
+ var removeIndexOfRising = w.globals.risingSeries.indexOf(realIndex);
+ w.globals.risingSeries.splice(removeIndexOfRising, 1);
+ }
+ }
+ } else {
+ w.globals.collapsedSeries.push({
+ index: realIndex,
+ data: series[realIndex]
+ });
+ w.globals.collapsedSeriesIndices.push(realIndex);
+ }
+
+ var seriesChildren = seriesEl.childNodes;
+
+ for (var sc = 0; sc < seriesChildren.length; sc++) {
+ if (seriesChildren[sc].classList.contains('apexcharts-series-markers-wrap')) {
+ if (seriesChildren[sc].classList.contains('apexcharts-hide')) {
+ seriesChildren[sc].classList.remove('apexcharts-hide');
+ } else {
+ seriesChildren[sc].classList.add('apexcharts-hide');
+ }
+ }
+ }
+
+ w.globals.allSeriesCollapsed = w.globals.collapsedSeries.length === w.config.series.length;
+ series = this._getSeriesBasedOnCollapsedState(series);
+
+ this.lgCtx.ctx.updateHelpers._updateSeries(series, w.config.chart.animations.dynamicAnimation.enabled);
+ }
+ }, {
+ key: "riseCollapsedSeries",
+ value: function riseCollapsedSeries(collapsedSeries, seriesIndices, realIndex) {
+ var w = this.w;
+ var series = Utils$1.clone(w.config.series);
+
+ if (collapsedSeries.length > 0) {
+ for (var c = 0; c < collapsedSeries.length; c++) {
+ if (collapsedSeries[c].index === realIndex) {
+ if (w.globals.axisCharts) {
+ series[realIndex].data = collapsedSeries[c].data.slice();
+ collapsedSeries.splice(c, 1);
+ seriesIndices.splice(c, 1);
+ w.globals.risingSeries.push(realIndex);
+ } else {
+ series[realIndex] = collapsedSeries[c].data;
+ collapsedSeries.splice(c, 1);
+ seriesIndices.splice(c, 1);
+ w.globals.risingSeries.push(realIndex);
+ }
+ }
+ }
+
+ series = this._getSeriesBasedOnCollapsedState(series);
+
+ this.lgCtx.ctx.updateHelpers._updateSeries(series, w.config.chart.animations.dynamicAnimation.enabled);
+ }
+ }
+ }, {
+ key: "_getSeriesBasedOnCollapsedState",
+ value: function _getSeriesBasedOnCollapsedState(series) {
+ var w = this.w;
+
+ if (w.globals.axisCharts) {
+ series.forEach(function (s, sI) {
+ if (w.globals.collapsedSeriesIndices.indexOf(sI) > -1) {
+ series[sI].data = [];
+ }
+ });
+ } else {
+ series.forEach(function (s, sI) {
+ if (w.globals.collapsedSeriesIndices.indexOf(sI) > -1) {
+ series[sI] = 0;
+ }
+ });
+ }
+
+ return series;
+ }
+ }]);
+
+ return Helpers;
+ }();
+
+ /**
+ * ApexCharts Legend Class to draw legend.
+ *
+ * @module Legend
+ **/
+
+ var Legend = /*#__PURE__*/function () {
+ function Legend(ctx) {
+ _classCallCheck(this, Legend);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.onLegendClick = this.onLegendClick.bind(this);
+ this.onLegendHovered = this.onLegendHovered.bind(this);
+ this.isBarsDistributed = this.w.config.chart.type === 'bar' && this.w.config.plotOptions.bar.distributed && this.w.config.series.length === 1;
+ this.legendHelpers = new Helpers$2(this);
+ }
+
+ _createClass(Legend, [{
+ key: "init",
+ value: function init() {
+ var w = this.w;
+ var gl = w.globals;
+ var cnf = w.config;
+ var showLegendAlways = cnf.legend.showForSingleSeries && gl.series.length === 1 || this.isBarsDistributed || gl.series.length > 1;
+
+ if ((showLegendAlways || !gl.axisCharts) && cnf.legend.show) {
+ while (gl.dom.elLegendWrap.firstChild) {
+ gl.dom.elLegendWrap.removeChild(gl.dom.elLegendWrap.firstChild);
+ }
+
+ this.drawLegends();
+
+ if (!Utils$1.isIE11()) {
+ this.legendHelpers.appendToForeignObject();
+ } else {
+ // IE11 doesn't supports foreignObject, hence append it to
+ document.getElementsByTagName('head')[0].appendChild(this.legendHelpers.getLegendStyles());
+ }
+
+ if (cnf.legend.position === 'bottom' || cnf.legend.position === 'top') {
+ this.legendAlignHorizontal();
+ } else if (cnf.legend.position === 'right' || cnf.legend.position === 'left') {
+ this.legendAlignVertical();
+ }
+ }
+ }
+ }, {
+ key: "drawLegends",
+ value: function drawLegends() {
+ var me = this;
+ var w = this.w;
+ var fontFamily = w.config.legend.fontFamily;
+ var legendNames = w.globals.seriesNames;
+ var fillcolor = w.globals.colors.slice();
+
+ if (w.config.chart.type === 'heatmap') {
+ var ranges = w.config.plotOptions.heatmap.colorScale.ranges;
+ legendNames = ranges.map(function (colorScale) {
+ return colorScale.name ? colorScale.name : colorScale.from + ' - ' + colorScale.to;
+ });
+ fillcolor = ranges.map(function (color) {
+ return color.color;
+ });
+ } else if (this.isBarsDistributed) {
+ legendNames = w.globals.labels.slice();
+ }
+
+ if (w.config.legend.customLegendItems.length) {
+ legendNames = w.config.legend.customLegendItems;
+ }
+
+ var legendFormatter = w.globals.legendFormatter;
+ var isLegendInversed = w.config.legend.inverseOrder;
+
+ for (var i = isLegendInversed ? legendNames.length - 1 : 0; isLegendInversed ? i >= 0 : i <= legendNames.length - 1; isLegendInversed ? i-- : i++) {
+ var _w$config$legend$labe;
+
+ var text = legendFormatter(legendNames[i], {
+ seriesIndex: i,
+ w: w
+ });
+ var collapsedSeries = false;
+ var ancillaryCollapsedSeries = false;
+
+ if (w.globals.collapsedSeries.length > 0) {
+ for (var c = 0; c < w.globals.collapsedSeries.length; c++) {
+ if (w.globals.collapsedSeries[c].index === i) {
+ collapsedSeries = true;
+ }
+ }
+ }
+
+ if (w.globals.ancillaryCollapsedSeriesIndices.length > 0) {
+ for (var _c = 0; _c < w.globals.ancillaryCollapsedSeriesIndices.length; _c++) {
+ if (w.globals.ancillaryCollapsedSeriesIndices[_c] === i) {
+ ancillaryCollapsedSeries = true;
+ }
+ }
+ }
+
+ var elMarker = document.createElement('span');
+ elMarker.classList.add('apexcharts-legend-marker');
+ var mOffsetX = w.config.legend.markers.offsetX;
+ var mOffsetY = w.config.legend.markers.offsetY;
+ var mHeight = w.config.legend.markers.height;
+ var mWidth = w.config.legend.markers.width;
+ var mBorderWidth = w.config.legend.markers.strokeWidth;
+ var mBorderColor = w.config.legend.markers.strokeColor;
+ var mBorderRadius = w.config.legend.markers.radius;
+ var mStyle = elMarker.style;
+ mStyle.background = fillcolor[i];
+ mStyle.color = fillcolor[i];
+ mStyle.setProperty('background', fillcolor[i], 'important'); // override fill color with custom legend.markers.fillColors
+
+ if (w.config.legend.markers.fillColors && w.config.legend.markers.fillColors[i]) {
+ mStyle.background = w.config.legend.markers.fillColors[i];
+ } // override with data color
+
+
+ if (w.globals.seriesColors[i] !== undefined) {
+ mStyle.background = w.globals.seriesColors[i];
+ mStyle.color = w.globals.seriesColors[i];
+ }
+
+ mStyle.height = Array.isArray(mHeight) ? parseFloat(mHeight[i]) + 'px' : parseFloat(mHeight) + 'px';
+ mStyle.width = Array.isArray(mWidth) ? parseFloat(mWidth[i]) + 'px' : parseFloat(mWidth) + 'px';
+ mStyle.left = (Array.isArray(mOffsetX) ? parseFloat(mOffsetX[i]) : parseFloat(mOffsetX)) + 'px';
+ mStyle.top = (Array.isArray(mOffsetY) ? parseFloat(mOffsetY[i]) : parseFloat(mOffsetY)) + 'px';
+ mStyle.borderWidth = Array.isArray(mBorderWidth) ? mBorderWidth[i] : mBorderWidth;
+ mStyle.borderColor = Array.isArray(mBorderColor) ? mBorderColor[i] : mBorderColor;
+ mStyle.borderRadius = Array.isArray(mBorderRadius) ? parseFloat(mBorderRadius[i]) + 'px' : parseFloat(mBorderRadius) + 'px';
+
+ if (w.config.legend.markers.customHTML) {
+ if (Array.isArray(w.config.legend.markers.customHTML)) {
+ if (w.config.legend.markers.customHTML[i]) {
+ elMarker.innerHTML = w.config.legend.markers.customHTML[i]();
+ }
+ } else {
+ elMarker.innerHTML = w.config.legend.markers.customHTML();
+ }
+ }
+
+ Graphics.setAttrs(elMarker, {
+ rel: i + 1,
+ 'data:collapsed': collapsedSeries || ancillaryCollapsedSeries
+ });
+
+ if (collapsedSeries || ancillaryCollapsedSeries) {
+ elMarker.classList.add('apexcharts-inactive-legend');
+ }
+
+ var elLegend = document.createElement('div');
+ var elLegendText = document.createElement('span');
+ elLegendText.classList.add('apexcharts-legend-text');
+ elLegendText.innerHTML = Array.isArray(text) ? text.join(' ') : text;
+ var textColor = w.config.legend.labels.useSeriesColors ? w.globals.colors[i] : Array.isArray(w.config.legend.labels.colors) ? (_w$config$legend$labe = w.config.legend.labels.colors) === null || _w$config$legend$labe === void 0 ? void 0 : _w$config$legend$labe[i] : w.config.legend.labels.colors;
+
+ if (!textColor) {
+ textColor = w.config.chart.foreColor;
+ }
+
+ elLegendText.style.color = textColor;
+ elLegendText.style.fontSize = parseFloat(w.config.legend.fontSize) + 'px';
+ elLegendText.style.fontWeight = w.config.legend.fontWeight;
+ elLegendText.style.fontFamily = fontFamily || w.config.chart.fontFamily;
+ Graphics.setAttrs(elLegendText, {
+ rel: i + 1,
+ i: i,
+ 'data:default-text': encodeURIComponent(text),
+ 'data:collapsed': collapsedSeries || ancillaryCollapsedSeries
+ });
+ elLegend.appendChild(elMarker);
+ elLegend.appendChild(elLegendText);
+ var coreUtils = new CoreUtils(this.ctx);
+
+ if (!w.config.legend.showForZeroSeries) {
+ var total = coreUtils.getSeriesTotalByIndex(i);
+
+ if (total === 0 && coreUtils.seriesHaveSameValues(i) && !coreUtils.isSeriesNull(i) && w.globals.collapsedSeriesIndices.indexOf(i) === -1 && w.globals.ancillaryCollapsedSeriesIndices.indexOf(i) === -1) {
+ elLegend.classList.add('apexcharts-hidden-zero-series');
+ }
+ }
+
+ if (!w.config.legend.showForNullSeries) {
+ if (coreUtils.isSeriesNull(i) && w.globals.collapsedSeriesIndices.indexOf(i) === -1 && w.globals.ancillaryCollapsedSeriesIndices.indexOf(i) === -1) {
+ elLegend.classList.add('apexcharts-hidden-null-series');
+ }
+ }
+
+ w.globals.dom.elLegendWrap.appendChild(elLegend);
+ w.globals.dom.elLegendWrap.classList.add("apexcharts-align-".concat(w.config.legend.horizontalAlign));
+ w.globals.dom.elLegendWrap.classList.add('apx-legend-position-' + w.config.legend.position);
+ elLegend.classList.add('apexcharts-legend-series');
+ elLegend.style.margin = "".concat(w.config.legend.itemMargin.vertical, "px ").concat(w.config.legend.itemMargin.horizontal, "px");
+ w.globals.dom.elLegendWrap.style.width = w.config.legend.width ? w.config.legend.width + 'px' : '';
+ w.globals.dom.elLegendWrap.style.height = w.config.legend.height ? w.config.legend.height + 'px' : '';
+ Graphics.setAttrs(elLegend, {
+ rel: i + 1,
+ seriesName: Utils$1.escapeString(legendNames[i]),
+ 'data:collapsed': collapsedSeries || ancillaryCollapsedSeries
+ });
+
+ if (collapsedSeries || ancillaryCollapsedSeries) {
+ elLegend.classList.add('apexcharts-inactive-legend');
+ }
+
+ if (!w.config.legend.onItemClick.toggleDataSeries) {
+ elLegend.classList.add('apexcharts-no-click');
+ }
+ }
+
+ w.globals.dom.elWrap.addEventListener('click', me.onLegendClick, true);
+
+ if (w.config.legend.onItemHover.highlightDataSeries && w.config.legend.customLegendItems.length === 0) {
+ w.globals.dom.elWrap.addEventListener('mousemove', me.onLegendHovered, true);
+ w.globals.dom.elWrap.addEventListener('mouseout', me.onLegendHovered, true);
+ }
+ }
+ }, {
+ key: "setLegendWrapXY",
+ value: function setLegendWrapXY(offsetX, offsetY) {
+ var w = this.w;
+ var elLegendWrap = w.globals.dom.elLegendWrap;
+ var legendRect = elLegendWrap.getBoundingClientRect();
+ var x = 0;
+ var y = 0;
+
+ if (w.config.legend.position === 'bottom') {
+ y = y + (w.globals.svgHeight - legendRect.height / 2);
+ } else if (w.config.legend.position === 'top') {
+ var dim = new Dimensions(this.ctx);
+ var titleH = dim.dimHelpers.getTitleSubtitleCoords('title').height;
+ var subtitleH = dim.dimHelpers.getTitleSubtitleCoords('subtitle').height;
+ y = y + (titleH > 0 ? titleH - 10 : 0) + (subtitleH > 0 ? subtitleH - 10 : 0);
+ }
+
+ elLegendWrap.style.position = 'absolute';
+ x = x + offsetX + w.config.legend.offsetX;
+ y = y + offsetY + w.config.legend.offsetY;
+ elLegendWrap.style.left = x + 'px';
+ elLegendWrap.style.top = y + 'px';
+
+ if (w.config.legend.position === 'bottom') {
+ elLegendWrap.style.top = 'auto';
+ elLegendWrap.style.bottom = 5 - w.config.legend.offsetY + 'px';
+ } else if (w.config.legend.position === 'right') {
+ elLegendWrap.style.left = 'auto';
+ elLegendWrap.style.right = 25 + w.config.legend.offsetX + 'px';
+ }
+
+ var fixedHeigthWidth = ['width', 'height'];
+ fixedHeigthWidth.forEach(function (hw) {
+ if (elLegendWrap.style[hw]) {
+ elLegendWrap.style[hw] = parseInt(w.config.legend[hw], 10) + 'px';
+ }
+ });
+ }
+ }, {
+ key: "legendAlignHorizontal",
+ value: function legendAlignHorizontal() {
+ var w = this.w;
+ var elLegendWrap = w.globals.dom.elLegendWrap;
+ elLegendWrap.style.right = 0;
+ var lRect = this.legendHelpers.getLegendBBox();
+ var dimensions = new Dimensions(this.ctx);
+ var titleRect = dimensions.dimHelpers.getTitleSubtitleCoords('title');
+ var subtitleRect = dimensions.dimHelpers.getTitleSubtitleCoords('subtitle');
+ var offsetX = 20;
+ var offsetY = 0; // the whole legend box is set to bottom
+
+ if (w.config.legend.position === 'bottom') {
+ offsetY = -lRect.clwh / 1.8;
+ } else if (w.config.legend.position === 'top') {
+ offsetY = titleRect.height + subtitleRect.height + w.config.title.margin + w.config.subtitle.margin - 10;
+ }
+
+ this.setLegendWrapXY(offsetX, offsetY);
+ }
+ }, {
+ key: "legendAlignVertical",
+ value: function legendAlignVertical() {
+ var w = this.w;
+ var lRect = this.legendHelpers.getLegendBBox();
+ var offsetY = 20;
+ var offsetX = 0;
+
+ if (w.config.legend.position === 'left') {
+ offsetX = 20;
+ }
+
+ if (w.config.legend.position === 'right') {
+ offsetX = w.globals.svgWidth - lRect.clww - 10;
+ }
+
+ this.setLegendWrapXY(offsetX, offsetY);
+ }
+ }, {
+ key: "onLegendHovered",
+ value: function onLegendHovered(e) {
+ var w = this.w;
+ var hoverOverLegend = e.target.classList.contains('apexcharts-legend-series') || e.target.classList.contains('apexcharts-legend-text') || e.target.classList.contains('apexcharts-legend-marker');
+
+ if (w.config.chart.type !== 'heatmap' && !this.isBarsDistributed) {
+ if (!e.target.classList.contains('apexcharts-inactive-legend') && hoverOverLegend) {
+ var series = new Series(this.ctx);
+ series.toggleSeriesOnHover(e, e.target);
+ }
+ } else {
+ // for heatmap handling
+ if (hoverOverLegend) {
+ var seriesCnt = parseInt(e.target.getAttribute('rel'), 10) - 1;
+ this.ctx.events.fireEvent('legendHover', [this.ctx, seriesCnt, this.w]);
+
+ var _series = new Series(this.ctx);
+
+ _series.highlightRangeInSeries(e, e.target);
+ }
+ }
+ }
+ }, {
+ key: "onLegendClick",
+ value: function onLegendClick(e) {
+ var w = this.w;
+ if (w.config.legend.customLegendItems.length) return;
+
+ if (e.target.classList.contains('apexcharts-legend-series') || e.target.classList.contains('apexcharts-legend-text') || e.target.classList.contains('apexcharts-legend-marker')) {
+ var seriesCnt = parseInt(e.target.getAttribute('rel'), 10) - 1;
+ var isHidden = e.target.getAttribute('data:collapsed') === 'true';
+ var legendClick = this.w.config.chart.events.legendClick;
+
+ if (typeof legendClick === 'function') {
+ legendClick(this.ctx, seriesCnt, this.w);
+ }
+
+ this.ctx.events.fireEvent('legendClick', [this.ctx, seriesCnt, this.w]);
+ var markerClick = this.w.config.legend.markers.onClick;
+
+ if (typeof markerClick === 'function' && e.target.classList.contains('apexcharts-legend-marker')) {
+ markerClick(this.ctx, seriesCnt, this.w);
+ this.ctx.events.fireEvent('legendMarkerClick', [this.ctx, seriesCnt, this.w]);
+ } // for now - just prevent click on heatmap legend - and allow hover only
+
+
+ var clickAllowed = w.config.chart.type !== 'treemap' && w.config.chart.type !== 'heatmap' && !this.isBarsDistributed;
+
+ if (clickAllowed && w.config.legend.onItemClick.toggleDataSeries) {
+ this.legendHelpers.toggleDataSeries(seriesCnt, isHidden);
+ }
+ }
+ }
+ }]);
+
+ return Legend;
+ }();
+
+ var icoPan = "";
+
+ var icoZoom = "";
+
+ var icoReset = "";
+
+ var icoZoomIn = "\n";
+
+ var icoZoomOut = "\n";
+
+ var icoSelect = "";
+
+ var icoMenu = "";
+
+ /**
+ * ApexCharts Toolbar Class for creating toolbar in axis based charts.
+ *
+ * @module Toolbar
+ **/
+
+ var Toolbar = /*#__PURE__*/function () {
+ function Toolbar(ctx) {
+ _classCallCheck(this, Toolbar);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ var w = this.w;
+ this.ev = this.w.config.chart.events;
+ this.selectedClass = 'apexcharts-selected';
+ this.localeValues = this.w.globals.locale.toolbar;
+ this.minX = w.globals.minX;
+ this.maxX = w.globals.maxX;
+ }
+
+ _createClass(Toolbar, [{
+ key: "createToolbar",
+ value: function createToolbar() {
+ var _this = this;
+
+ var w = this.w;
+
+ var createDiv = function createDiv() {
+ return document.createElement('div');
+ };
+
+ var elToolbarWrap = createDiv();
+ elToolbarWrap.setAttribute('class', 'apexcharts-toolbar');
+ elToolbarWrap.style.top = w.config.chart.toolbar.offsetY + 'px';
+ elToolbarWrap.style.right = -w.config.chart.toolbar.offsetX + 3 + 'px';
+ w.globals.dom.elWrap.appendChild(elToolbarWrap);
+ this.elZoom = createDiv();
+ this.elZoomIn = createDiv();
+ this.elZoomOut = createDiv();
+ this.elPan = createDiv();
+ this.elSelection = createDiv();
+ this.elZoomReset = createDiv();
+ this.elMenuIcon = createDiv();
+ this.elMenu = createDiv();
+ this.elCustomIcons = [];
+ this.t = w.config.chart.toolbar.tools;
+
+ if (Array.isArray(this.t.customIcons)) {
+ for (var i = 0; i < this.t.customIcons.length; i++) {
+ this.elCustomIcons.push(createDiv());
+ }
+ }
+
+ var toolbarControls = [];
+
+ var appendZoomControl = function appendZoomControl(type, el, ico) {
+ var tool = type.toLowerCase();
+
+ if (_this.t[tool] && w.config.chart.zoom.enabled) {
+ toolbarControls.push({
+ el: el,
+ icon: typeof _this.t[tool] === 'string' ? _this.t[tool] : ico,
+ title: _this.localeValues[type],
+ class: "apexcharts-".concat(tool, "-icon")
+ });
+ }
+ };
+
+ appendZoomControl('zoomIn', this.elZoomIn, icoZoomIn);
+ appendZoomControl('zoomOut', this.elZoomOut, icoZoomOut);
+
+ var zoomSelectionCtrls = function zoomSelectionCtrls(z) {
+ if (_this.t[z] && w.config.chart[z].enabled) {
+ toolbarControls.push({
+ el: z === 'zoom' ? _this.elZoom : _this.elSelection,
+ icon: typeof _this.t[z] === 'string' ? _this.t[z] : z === 'zoom' ? icoZoom : icoSelect,
+ title: _this.localeValues[z === 'zoom' ? 'selectionZoom' : 'selection'],
+ class: w.globals.isTouchDevice ? 'apexcharts-element-hidden' : "apexcharts-".concat(z, "-icon")
+ });
+ }
+ };
+
+ zoomSelectionCtrls('zoom');
+ zoomSelectionCtrls('selection');
+
+ if (this.t.pan && w.config.chart.zoom.enabled) {
+ toolbarControls.push({
+ el: this.elPan,
+ icon: typeof this.t.pan === 'string' ? this.t.pan : icoPan,
+ title: this.localeValues.pan,
+ class: w.globals.isTouchDevice ? 'apexcharts-element-hidden' : 'apexcharts-pan-icon'
+ });
+ }
+
+ appendZoomControl('reset', this.elZoomReset, icoReset);
+
+ if (this.t.download) {
+ toolbarControls.push({
+ el: this.elMenuIcon,
+ icon: typeof this.t.download === 'string' ? this.t.download : icoMenu,
+ title: this.localeValues.menu,
+ class: 'apexcharts-menu-icon'
+ });
+ }
+
+ for (var _i = 0; _i < this.elCustomIcons.length; _i++) {
+ toolbarControls.push({
+ el: this.elCustomIcons[_i],
+ icon: this.t.customIcons[_i].icon,
+ title: this.t.customIcons[_i].title,
+ index: this.t.customIcons[_i].index,
+ class: 'apexcharts-toolbar-custom-icon ' + this.t.customIcons[_i].class
+ });
+ }
+
+ toolbarControls.forEach(function (t, index) {
+ if (t.index) {
+ Utils$1.moveIndexInArray(toolbarControls, index, t.index);
+ }
+ });
+
+ for (var _i2 = 0; _i2 < toolbarControls.length; _i2++) {
+ Graphics.setAttrs(toolbarControls[_i2].el, {
+ class: toolbarControls[_i2].class,
+ title: toolbarControls[_i2].title
+ });
+ toolbarControls[_i2].el.innerHTML = toolbarControls[_i2].icon;
+ elToolbarWrap.appendChild(toolbarControls[_i2].el);
+ }
+
+ this._createHamburgerMenu(elToolbarWrap);
+
+ if (w.globals.zoomEnabled) {
+ this.elZoom.classList.add(this.selectedClass);
+ } else if (w.globals.panEnabled) {
+ this.elPan.classList.add(this.selectedClass);
+ } else if (w.globals.selectionEnabled) {
+ this.elSelection.classList.add(this.selectedClass);
+ }
+
+ this.addToolbarEventListeners();
+ }
+ }, {
+ key: "_createHamburgerMenu",
+ value: function _createHamburgerMenu(parent) {
+ this.elMenuItems = [];
+ parent.appendChild(this.elMenu);
+ Graphics.setAttrs(this.elMenu, {
+ class: 'apexcharts-menu'
+ });
+ var menuItems = [{
+ name: 'exportSVG',
+ title: this.localeValues.exportToSVG
+ }, {
+ name: 'exportPNG',
+ title: this.localeValues.exportToPNG
+ }, {
+ name: 'exportCSV',
+ title: this.localeValues.exportToCSV
+ }];
+
+ for (var i = 0; i < menuItems.length; i++) {
+ this.elMenuItems.push(document.createElement('div'));
+ this.elMenuItems[i].innerHTML = menuItems[i].title;
+ Graphics.setAttrs(this.elMenuItems[i], {
+ class: "apexcharts-menu-item ".concat(menuItems[i].name),
+ title: menuItems[i].title
+ });
+ this.elMenu.appendChild(this.elMenuItems[i]);
+ }
+ }
+ }, {
+ key: "addToolbarEventListeners",
+ value: function addToolbarEventListeners() {
+ var _this2 = this;
+
+ this.elZoomReset.addEventListener('click', this.handleZoomReset.bind(this));
+ this.elSelection.addEventListener('click', this.toggleZoomSelection.bind(this, 'selection'));
+ this.elZoom.addEventListener('click', this.toggleZoomSelection.bind(this, 'zoom'));
+ this.elZoomIn.addEventListener('click', this.handleZoomIn.bind(this));
+ this.elZoomOut.addEventListener('click', this.handleZoomOut.bind(this));
+ this.elPan.addEventListener('click', this.togglePanning.bind(this));
+ this.elMenuIcon.addEventListener('click', this.toggleMenu.bind(this));
+ this.elMenuItems.forEach(function (m) {
+ if (m.classList.contains('exportSVG')) {
+ m.addEventListener('click', _this2.handleDownload.bind(_this2, 'svg'));
+ } else if (m.classList.contains('exportPNG')) {
+ m.addEventListener('click', _this2.handleDownload.bind(_this2, 'png'));
+ } else if (m.classList.contains('exportCSV')) {
+ m.addEventListener('click', _this2.handleDownload.bind(_this2, 'csv'));
+ }
+ });
+
+ for (var i = 0; i < this.t.customIcons.length; i++) {
+ this.elCustomIcons[i].addEventListener('click', this.t.customIcons[i].click.bind(this, this.ctx, this.ctx.w));
+ }
+ }
+ }, {
+ key: "toggleZoomSelection",
+ value: function toggleZoomSelection(type) {
+ var charts = this.ctx.getSyncedCharts();
+ charts.forEach(function (ch) {
+ ch.ctx.toolbar.toggleOtherControls();
+ var el = type === 'selection' ? ch.ctx.toolbar.elSelection : ch.ctx.toolbar.elZoom;
+ var enabledType = type === 'selection' ? 'selectionEnabled' : 'zoomEnabled';
+ ch.w.globals[enabledType] = !ch.w.globals[enabledType];
+
+ if (!el.classList.contains(ch.ctx.toolbar.selectedClass)) {
+ el.classList.add(ch.ctx.toolbar.selectedClass);
+ } else {
+ el.classList.remove(ch.ctx.toolbar.selectedClass);
+ }
+ });
+ }
+ }, {
+ key: "getToolbarIconsReference",
+ value: function getToolbarIconsReference() {
+ var w = this.w;
+
+ if (!this.elZoom) {
+ this.elZoom = w.globals.dom.baseEl.querySelector('.apexcharts-zoom-icon');
+ }
+
+ if (!this.elPan) {
+ this.elPan = w.globals.dom.baseEl.querySelector('.apexcharts-pan-icon');
+ }
+
+ if (!this.elSelection) {
+ this.elSelection = w.globals.dom.baseEl.querySelector('.apexcharts-selection-icon');
+ }
+ }
+ }, {
+ key: "enableZoomPanFromToolbar",
+ value: function enableZoomPanFromToolbar(type) {
+ this.toggleOtherControls();
+ type === 'pan' ? this.w.globals.panEnabled = true : this.w.globals.zoomEnabled = true;
+ var el = type === 'pan' ? this.elPan : this.elZoom;
+ var el2 = type === 'pan' ? this.elZoom : this.elPan;
+
+ if (el) {
+ el.classList.add(this.selectedClass);
+ }
+
+ if (el2) {
+ el2.classList.remove(this.selectedClass);
+ }
+ }
+ }, {
+ key: "togglePanning",
+ value: function togglePanning() {
+ var charts = this.ctx.getSyncedCharts();
+ charts.forEach(function (ch) {
+ ch.ctx.toolbar.toggleOtherControls();
+ ch.w.globals.panEnabled = !ch.w.globals.panEnabled;
+
+ if (!ch.ctx.toolbar.elPan.classList.contains(ch.ctx.toolbar.selectedClass)) {
+ ch.ctx.toolbar.elPan.classList.add(ch.ctx.toolbar.selectedClass);
+ } else {
+ ch.ctx.toolbar.elPan.classList.remove(ch.ctx.toolbar.selectedClass);
+ }
+ });
+ }
+ }, {
+ key: "toggleOtherControls",
+ value: function toggleOtherControls() {
+ var _this3 = this;
+
+ var w = this.w;
+ w.globals.panEnabled = false;
+ w.globals.zoomEnabled = false;
+ w.globals.selectionEnabled = false;
+ this.getToolbarIconsReference();
+ var toggleEls = [this.elPan, this.elSelection, this.elZoom];
+ toggleEls.forEach(function (el) {
+ if (el) {
+ el.classList.remove(_this3.selectedClass);
+ }
+ });
+ }
+ }, {
+ key: "handleZoomIn",
+ value: function handleZoomIn() {
+ var w = this.w;
+
+ if (w.globals.isRangeBar) {
+ this.minX = w.globals.minY;
+ this.maxX = w.globals.maxY;
+ }
+
+ var centerX = (this.minX + this.maxX) / 2;
+ var newMinX = (this.minX + centerX) / 2;
+ var newMaxX = (this.maxX + centerX) / 2;
+
+ var newMinXMaxX = this._getNewMinXMaxX(newMinX, newMaxX);
+
+ if (!w.globals.disableZoomIn) {
+ this.zoomUpdateOptions(newMinXMaxX.minX, newMinXMaxX.maxX);
+ }
+ }
+ }, {
+ key: "handleZoomOut",
+ value: function handleZoomOut() {
+ var w = this.w;
+
+ if (w.globals.isRangeBar) {
+ this.minX = w.globals.minY;
+ this.maxX = w.globals.maxY;
+ } // avoid zooming out beyond 1000 which may result in NaN values being printed on x-axis
+
+
+ if (w.config.xaxis.type === 'datetime' && new Date(this.minX).getUTCFullYear() < 1000) {
+ return;
+ }
+
+ var centerX = (this.minX + this.maxX) / 2;
+ var newMinX = this.minX - (centerX - this.minX);
+ var newMaxX = this.maxX - (centerX - this.maxX);
+
+ var newMinXMaxX = this._getNewMinXMaxX(newMinX, newMaxX);
+
+ if (!w.globals.disableZoomOut) {
+ this.zoomUpdateOptions(newMinXMaxX.minX, newMinXMaxX.maxX);
+ }
+ }
+ }, {
+ key: "_getNewMinXMaxX",
+ value: function _getNewMinXMaxX(newMinX, newMaxX) {
+ var shouldFloor = this.w.config.xaxis.convertedCatToNumeric;
+ return {
+ minX: shouldFloor ? Math.floor(newMinX) : newMinX,
+ maxX: shouldFloor ? Math.floor(newMaxX) : newMaxX
+ };
+ }
+ }, {
+ key: "zoomUpdateOptions",
+ value: function zoomUpdateOptions(newMinX, newMaxX) {
+ var w = this.w;
+
+ if (newMinX === undefined && newMaxX === undefined) {
+ this.handleZoomReset();
+ return;
+ }
+
+ if (w.config.xaxis.convertedCatToNumeric) {
+ // in category charts, avoid zooming out beyond min and max
+ if (newMinX < 1) {
+ newMinX = 1;
+ newMaxX = w.globals.dataPoints;
+ }
+
+ if (newMaxX - newMinX < 2) {
+ return;
+ }
+ }
+
+ var xaxis = {
+ min: newMinX,
+ max: newMaxX
+ };
+ var beforeZoomRange = this.getBeforeZoomRange(xaxis);
+
+ if (beforeZoomRange) {
+ xaxis = beforeZoomRange.xaxis;
+ }
+
+ var options = {
+ xaxis: xaxis
+ };
+ var yaxis = Utils$1.clone(w.globals.initialConfig.yaxis);
+
+ if (!w.config.chart.group) {
+ // if chart in a group, prevent yaxis update here
+ // fix issue #650
+ options.yaxis = yaxis;
+ }
+
+ this.w.globals.zoomed = true;
+
+ this.ctx.updateHelpers._updateOptions(options, false, this.w.config.chart.animations.dynamicAnimation.enabled);
+
+ this.zoomCallback(xaxis, yaxis);
+ }
+ }, {
+ key: "zoomCallback",
+ value: function zoomCallback(xaxis, yaxis) {
+ if (typeof this.ev.zoomed === 'function') {
+ this.ev.zoomed(this.ctx, {
+ xaxis: xaxis,
+ yaxis: yaxis
+ });
+ }
+ }
+ }, {
+ key: "getBeforeZoomRange",
+ value: function getBeforeZoomRange(xaxis, yaxis) {
+ var newRange = null;
+
+ if (typeof this.ev.beforeZoom === 'function') {
+ newRange = this.ev.beforeZoom(this, {
+ xaxis: xaxis,
+ yaxis: yaxis
+ });
+ }
+
+ return newRange;
+ }
+ }, {
+ key: "toggleMenu",
+ value: function toggleMenu() {
+ var _this4 = this;
+
+ window.setTimeout(function () {
+ if (_this4.elMenu.classList.contains('apexcharts-menu-open')) {
+ _this4.elMenu.classList.remove('apexcharts-menu-open');
+ } else {
+ _this4.elMenu.classList.add('apexcharts-menu-open');
+ }
+ }, 0);
+ }
+ }, {
+ key: "handleDownload",
+ value: function handleDownload(type) {
+ var w = this.w;
+ var exprt = new Exports(this.ctx);
+
+ switch (type) {
+ case 'svg':
+ exprt.exportToSVG(this.ctx);
+ break;
+
+ case 'png':
+ exprt.exportToPng(this.ctx);
+ break;
+
+ case 'csv':
+ exprt.exportToCSV({
+ series: w.config.series,
+ columnDelimiter: w.config.chart.toolbar.export.csv.columnDelimiter
+ });
+ break;
+ }
+ }
+ }, {
+ key: "handleZoomReset",
+ value: function handleZoomReset(e) {
+ var charts = this.ctx.getSyncedCharts();
+ charts.forEach(function (ch) {
+ var w = ch.w; // forget lastXAxis min/max as reset button isn't resetting the x-axis completely if zoomX is called before
+
+ w.globals.lastXAxis.min = w.globals.initialConfig.xaxis.min;
+ w.globals.lastXAxis.max = w.globals.initialConfig.xaxis.max;
+ ch.updateHelpers.revertDefaultAxisMinMax();
+
+ if (typeof w.config.chart.events.beforeResetZoom === 'function') {
+ // here, user get an option to control xaxis and yaxis when resetZoom is called
+ // at this point, whatever is returned from w.config.chart.events.beforeResetZoom
+ // is set as the new xaxis/yaxis min/max
+ var resetZoomRange = w.config.chart.events.beforeResetZoom(ch, w);
+
+ if (resetZoomRange) {
+ ch.updateHelpers.revertDefaultAxisMinMax(resetZoomRange);
+ }
+ }
+
+ if (typeof w.config.chart.events.zoomed === 'function') {
+ ch.ctx.toolbar.zoomCallback({
+ min: w.config.xaxis.min,
+ max: w.config.xaxis.max
+ });
+ }
+
+ w.globals.zoomed = false; // if user has some series collapsed before hitting zoom reset button,
+ // those series should stay collapsed
+
+ var series = ch.ctx.series.emptyCollapsedSeries(Utils$1.clone(w.globals.initialSeries));
+
+ ch.updateHelpers._updateSeries(series, w.config.chart.animations.dynamicAnimation.enabled);
+ });
+ }
+ }, {
+ key: "destroy",
+ value: function destroy() {
+ this.elZoom = null;
+ this.elZoomIn = null;
+ this.elZoomOut = null;
+ this.elPan = null;
+ this.elSelection = null;
+ this.elZoomReset = null;
+ this.elMenuIcon = null;
+ }
+ }]);
+
+ return Toolbar;
+ }();
+
+ /**
+ * ApexCharts Zoom Class for handling zooming and panning on axes based charts.
+ *
+ * @module ZoomPanSelection
+ **/
+
+ var ZoomPanSelection = /*#__PURE__*/function (_Toolbar) {
+ _inherits(ZoomPanSelection, _Toolbar);
+
+ var _super = _createSuper(ZoomPanSelection);
+
+ function ZoomPanSelection(ctx) {
+ var _this;
+
+ _classCallCheck(this, ZoomPanSelection);
+
+ _this = _super.call(this, ctx);
+ _this.ctx = ctx;
+ _this.w = ctx.w;
+ _this.dragged = false;
+ _this.graphics = new Graphics(_this.ctx);
+ _this.eventList = ['mousedown', 'mouseleave', 'mousemove', 'touchstart', 'touchmove', 'mouseup', 'touchend'];
+ _this.clientX = 0;
+ _this.clientY = 0;
+ _this.startX = 0;
+ _this.endX = 0;
+ _this.dragX = 0;
+ _this.startY = 0;
+ _this.endY = 0;
+ _this.dragY = 0;
+ _this.moveDirection = 'none';
+ return _this;
+ }
+
+ _createClass(ZoomPanSelection, [{
+ key: "init",
+ value: function init(_ref) {
+ var _this2 = this;
+
+ var xyRatios = _ref.xyRatios;
+ var w = this.w;
+ var me = this;
+ this.xyRatios = xyRatios;
+ this.zoomRect = this.graphics.drawRect(0, 0, 0, 0);
+ this.selectionRect = this.graphics.drawRect(0, 0, 0, 0);
+ this.gridRect = w.globals.dom.baseEl.querySelector('.apexcharts-grid');
+ this.zoomRect.node.classList.add('apexcharts-zoom-rect');
+ this.selectionRect.node.classList.add('apexcharts-selection-rect');
+ w.globals.dom.elGraphical.add(this.zoomRect);
+ w.globals.dom.elGraphical.add(this.selectionRect);
+
+ if (w.config.chart.selection.type === 'x') {
+ this.slDraggableRect = this.selectionRect.draggable({
+ minX: 0,
+ minY: 0,
+ maxX: w.globals.gridWidth,
+ maxY: w.globals.gridHeight
+ }).on('dragmove', this.selectionDragging.bind(this, 'dragging'));
+ } else if (w.config.chart.selection.type === 'y') {
+ this.slDraggableRect = this.selectionRect.draggable({
+ minX: 0,
+ maxX: w.globals.gridWidth
+ }).on('dragmove', this.selectionDragging.bind(this, 'dragging'));
+ } else {
+ this.slDraggableRect = this.selectionRect.draggable().on('dragmove', this.selectionDragging.bind(this, 'dragging'));
+ }
+
+ this.preselectedSelection();
+ this.hoverArea = w.globals.dom.baseEl.querySelector("".concat(w.globals.chartClass, " .apexcharts-svg"));
+ this.hoverArea.classList.add('apexcharts-zoomable');
+ this.eventList.forEach(function (event) {
+ _this2.hoverArea.addEventListener(event, me.svgMouseEvents.bind(me, xyRatios), {
+ capture: false,
+ passive: true
+ });
+ });
+ } // remove the event listeners which were previously added on hover area
+
+ }, {
+ key: "destroy",
+ value: function destroy() {
+ if (this.slDraggableRect) {
+ this.slDraggableRect.draggable(false);
+ this.slDraggableRect.off();
+ this.selectionRect.off();
+ }
+
+ this.selectionRect = null;
+ this.zoomRect = null;
+ this.gridRect = null;
+ }
+ }, {
+ key: "svgMouseEvents",
+ value: function svgMouseEvents(xyRatios, e) {
+ var w = this.w;
+ var me = this;
+ var toolbar = this.ctx.toolbar;
+ var zoomtype = w.globals.zoomEnabled ? w.config.chart.zoom.type : w.config.chart.selection.type;
+ var autoSelected = w.config.chart.toolbar.autoSelected;
+
+ if (e.shiftKey) {
+ this.shiftWasPressed = true;
+ toolbar.enableZoomPanFromToolbar(autoSelected === 'pan' ? 'zoom' : 'pan');
+ } else {
+ if (this.shiftWasPressed) {
+ toolbar.enableZoomPanFromToolbar(autoSelected);
+ this.shiftWasPressed = false;
+ }
+ }
+
+ if (!e.target) return;
+ var tc = e.target.classList;
+ var pc;
+
+ if (e.target.parentNode && e.target.parentNode !== null) {
+ pc = e.target.parentNode.classList;
+ }
+
+ var falsePositives = tc.contains('apexcharts-selection-rect') || tc.contains('apexcharts-legend-marker') || tc.contains('apexcharts-legend-text') || pc && pc.contains('apexcharts-toolbar');
+ if (falsePositives) return;
+ me.clientX = e.type === 'touchmove' || e.type === 'touchstart' ? e.touches[0].clientX : e.type === 'touchend' ? e.changedTouches[0].clientX : e.clientX;
+ me.clientY = e.type === 'touchmove' || e.type === 'touchstart' ? e.touches[0].clientY : e.type === 'touchend' ? e.changedTouches[0].clientY : e.clientY;
+
+ if ((e.type === 'mousedown' || e.type === 'touchmove') && e.which === 1) {
+ var gridRectDim = me.gridRect.getBoundingClientRect();
+ me.startX = me.clientX - gridRectDim.left;
+ me.startY = me.clientY - gridRectDim.top;
+ me.dragged = false;
+ me.w.globals.mousedown = true;
+ }
+
+ if (e.type === 'mousemove' && e.which === 1 || e.type === 'touchmove') {
+ me.dragged = true;
+
+ if (w.globals.panEnabled) {
+ w.globals.selection = null;
+
+ if (me.w.globals.mousedown || e.type === 'touchmove') {
+ if (e.type === 'touchmove' && !me.w.globals.mousedown) {
+ console.warn('me.w.globals.mousedown ', me.w.globals.mousedown);
+
+ var _gridRectDim = me.gridRect.getBoundingClientRect();
+
+ me.startX = me.clientX - _gridRectDim.left;
+ me.startY = me.clientY - _gridRectDim.top;
+ me.w.globals.mousedown = true;
+ }
+
+ me.panDragging({
+ context: me,
+ zoomtype: zoomtype,
+ xyRatios: xyRatios
+ });
+ }
+ } else {
+ if (e.type === 'touchmove') {
+ if (!me.w.globals.mousedown) {
+ var _gridRectDim2 = me.gridRect.getBoundingClientRect();
+
+ me.startX = me.clientX - _gridRectDim2.left;
+ me.startY = me.clientY - _gridRectDim2.top;
+ }
+
+ me.w.globals.mousedown = true;
+ }
+
+ if (me.w.globals.mousedown && w.globals.zoomEnabled || me.w.globals.mousedown && w.globals.selectionEnabled) {
+ me.selection = me.selectionDrawing({
+ context: me,
+ zoomtype: zoomtype
+ });
+ }
+ }
+ }
+
+ if (e.type === 'mouseup' || e.type === 'touchend' || e.type === 'mouseleave') {
+ // we will be calling getBoundingClientRect on each mousedown/mousemove/mouseup
+ var _gridRectDim3 = me.gridRect.getBoundingClientRect();
+
+ if (me.w.globals.mousedown) {
+ // user released the drag, now do all the calculations
+ me.endX = me.clientX - _gridRectDim3.left;
+ me.endY = me.clientY - _gridRectDim3.top;
+ me.dragX = Math.abs(me.endX - me.startX);
+ me.dragY = Math.abs(me.endY - me.startY);
+
+ if (w.globals.zoomEnabled || w.globals.selectionEnabled) {
+ me.selectionDrawn({
+ context: me,
+ zoomtype: zoomtype
+ });
+ }
+
+ if (w.globals.panEnabled && w.config.xaxis.convertedCatToNumeric) {
+ me.delayedPanScrolled();
+ }
+ }
+
+ if (w.globals.zoomEnabled) {
+ me.hideSelectionRect(this.selectionRect);
+ }
+
+ me.dragged = false;
+ me.w.globals.mousedown = false;
+ }
+
+ this.makeSelectionRectDraggable();
+ }
+ }, {
+ key: "makeSelectionRectDraggable",
+ value: function makeSelectionRectDraggable() {
+ var w = this.w;
+ if (!this.selectionRect) return;
+ var rectDim = this.selectionRect.node.getBoundingClientRect();
+
+ if (rectDim.width > 0 && rectDim.height > 0) {
+ this.slDraggableRect.selectize({
+ points: 'l, r',
+ pointSize: 8,
+ pointType: 'rect'
+ }).resize({
+ constraint: {
+ minX: 0,
+ minY: 0,
+ maxX: w.globals.gridWidth,
+ maxY: w.globals.gridHeight
+ }
+ }).on('resizing', this.selectionDragging.bind(this, 'resizing'));
+ }
+ }
+ }, {
+ key: "preselectedSelection",
+ value: function preselectedSelection() {
+ var w = this.w;
+ var xyRatios = this.xyRatios;
+
+ if (!w.globals.zoomEnabled) {
+ if (typeof w.globals.selection !== 'undefined' && w.globals.selection !== null) {
+ this.drawSelectionRect(w.globals.selection);
+ } else {
+ if (w.config.chart.selection.xaxis.min !== undefined && w.config.chart.selection.xaxis.max !== undefined) {
+ var x = (w.config.chart.selection.xaxis.min - w.globals.minX) / xyRatios.xRatio;
+ var width = w.globals.gridWidth - (w.globals.maxX - w.config.chart.selection.xaxis.max) / xyRatios.xRatio - x;
+
+ if (w.globals.isRangeBar) {
+ // rangebars put datetime data in y axis
+ x = // calculation: (selection left time - chart left time) / milliseconds per pixel = selection X value in pixels
+ (w.config.chart.selection.xaxis.min - w.globals.yAxisScale[0].niceMin) / xyRatios.invertedYRatio;
+ width = (w.config.chart.selection.xaxis.max - w.config.chart.selection.xaxis.min) / xyRatios.invertedYRatio;
+ }
+
+ var selectionRect = {
+ x: x,
+ y: 0,
+ width: width,
+ height: w.globals.gridHeight,
+ translateX: 0,
+ translateY: 0,
+ selectionEnabled: true
+ };
+ this.drawSelectionRect(selectionRect);
+ this.makeSelectionRectDraggable();
+
+ if (typeof w.config.chart.events.selection === 'function') {
+ w.config.chart.events.selection(this.ctx, {
+ xaxis: {
+ min: w.config.chart.selection.xaxis.min,
+ max: w.config.chart.selection.xaxis.max
+ },
+ yaxis: {}
+ });
+ }
+ }
+ }
+ }
+ }
+ }, {
+ key: "drawSelectionRect",
+ value: function drawSelectionRect(_ref2) {
+ var x = _ref2.x,
+ y = _ref2.y,
+ width = _ref2.width,
+ height = _ref2.height,
+ _ref2$translateX = _ref2.translateX,
+ translateX = _ref2$translateX === void 0 ? 0 : _ref2$translateX,
+ _ref2$translateY = _ref2.translateY,
+ translateY = _ref2$translateY === void 0 ? 0 : _ref2$translateY;
+ var w = this.w;
+ var zoomRect = this.zoomRect;
+ var selectionRect = this.selectionRect;
+
+ if (this.dragged || w.globals.selection !== null) {
+ var scalingAttrs = {
+ transform: 'translate(' + translateX + ', ' + translateY + ')'
+ }; // change styles based on zoom or selection
+ // zoom is Enabled and user has dragged, so draw blue rect
+
+ if (w.globals.zoomEnabled && this.dragged) {
+ if (width < 0) width = 1; // fixes apexcharts.js#1168
+
+ zoomRect.attr({
+ x: x,
+ y: y,
+ width: width,
+ height: height,
+ fill: w.config.chart.zoom.zoomedArea.fill.color,
+ 'fill-opacity': w.config.chart.zoom.zoomedArea.fill.opacity,
+ stroke: w.config.chart.zoom.zoomedArea.stroke.color,
+ 'stroke-width': w.config.chart.zoom.zoomedArea.stroke.width,
+ 'stroke-opacity': w.config.chart.zoom.zoomedArea.stroke.opacity
+ });
+ Graphics.setAttrs(zoomRect.node, scalingAttrs);
+ } // selection is enabled
+
+
+ if (w.globals.selectionEnabled) {
+ selectionRect.attr({
+ x: x,
+ y: y,
+ width: width > 0 ? width : 0,
+ height: height > 0 ? height : 0,
+ fill: w.config.chart.selection.fill.color,
+ 'fill-opacity': w.config.chart.selection.fill.opacity,
+ stroke: w.config.chart.selection.stroke.color,
+ 'stroke-width': w.config.chart.selection.stroke.width,
+ 'stroke-dasharray': w.config.chart.selection.stroke.dashArray,
+ 'stroke-opacity': w.config.chart.selection.stroke.opacity
+ });
+ Graphics.setAttrs(selectionRect.node, scalingAttrs);
+ }
+ }
+ }
+ }, {
+ key: "hideSelectionRect",
+ value: function hideSelectionRect(rect) {
+ if (rect) {
+ rect.attr({
+ x: 0,
+ y: 0,
+ width: 0,
+ height: 0
+ });
+ }
+ }
+ }, {
+ key: "selectionDrawing",
+ value: function selectionDrawing(_ref3) {
+ var context = _ref3.context,
+ zoomtype = _ref3.zoomtype;
+ var w = this.w;
+ var me = context;
+ var gridRectDim = this.gridRect.getBoundingClientRect();
+ var startX = me.startX - 1;
+ var startY = me.startY;
+ var inversedX = false;
+ var inversedY = false;
+ var selectionWidth = me.clientX - gridRectDim.left - startX;
+ var selectionHeight = me.clientY - gridRectDim.top - startY;
+ var selectionRect = {};
+
+ if (Math.abs(selectionWidth + startX) > w.globals.gridWidth) {
+ // user dragged the mouse outside drawing area to the right
+ selectionWidth = w.globals.gridWidth - startX;
+ } else if (me.clientX - gridRectDim.left < 0) {
+ // user dragged the mouse outside drawing area to the left
+ selectionWidth = startX;
+ } // inverse selection X
+
+
+ if (startX > me.clientX - gridRectDim.left) {
+ inversedX = true;
+ selectionWidth = Math.abs(selectionWidth);
+ } // inverse selection Y
+
+
+ if (startY > me.clientY - gridRectDim.top) {
+ inversedY = true;
+ selectionHeight = Math.abs(selectionHeight);
+ }
+
+ if (zoomtype === 'x') {
+ selectionRect = {
+ x: inversedX ? startX - selectionWidth : startX,
+ y: 0,
+ width: selectionWidth,
+ height: w.globals.gridHeight
+ };
+ } else if (zoomtype === 'y') {
+ selectionRect = {
+ x: 0,
+ y: inversedY ? startY - selectionHeight : startY,
+ width: w.globals.gridWidth,
+ height: selectionHeight
+ };
+ } else {
+ selectionRect = {
+ x: inversedX ? startX - selectionWidth : startX,
+ y: inversedY ? startY - selectionHeight : startY,
+ width: selectionWidth,
+ height: selectionHeight
+ };
+ }
+
+ me.drawSelectionRect(selectionRect);
+ me.selectionDragging('resizing');
+ return selectionRect;
+ }
+ }, {
+ key: "selectionDragging",
+ value: function selectionDragging(type, e) {
+ var _this3 = this;
+
+ var w = this.w;
+ var xyRatios = this.xyRatios;
+ var selRect = this.selectionRect;
+ var timerInterval = 0;
+
+ if (type === 'resizing') {
+ timerInterval = 30;
+ } // update selection when selection rect is dragged
+
+
+ var getSelAttr = function getSelAttr(attr) {
+ return parseFloat(selRect.node.getAttribute(attr));
+ };
+
+ var draggedProps = {
+ x: getSelAttr('x'),
+ y: getSelAttr('y'),
+ width: getSelAttr('width'),
+ height: getSelAttr('height')
+ };
+ w.globals.selection = draggedProps; // update selection ends
+
+ if (typeof w.config.chart.events.selection === 'function' && w.globals.selectionEnabled) {
+ // a small debouncer is required when resizing to avoid freezing the chart
+ clearTimeout(this.w.globals.selectionResizeTimer);
+ this.w.globals.selectionResizeTimer = window.setTimeout(function () {
+ var gridRectDim = _this3.gridRect.getBoundingClientRect();
+
+ var selectionRect = selRect.node.getBoundingClientRect();
+ var minX, maxX, minY, maxY;
+
+ if (!w.globals.isRangeBar) {
+ // original code is in the IF. rangeBar exception is in the ELSE.
+ minX = w.globals.xAxisScale.niceMin + (selectionRect.left - gridRectDim.left) * xyRatios.xRatio;
+ maxX = w.globals.xAxisScale.niceMin + (selectionRect.right - gridRectDim.left) * xyRatios.xRatio;
+ minY = w.globals.yAxisScale[0].niceMin + (gridRectDim.bottom - selectionRect.bottom) * xyRatios.yRatio[0];
+ maxY = w.globals.yAxisScale[0].niceMax - (selectionRect.top - gridRectDim.top) * xyRatios.yRatio[0];
+ } else {
+ // rangeBars use x as the category, and y as the datetime data. // find data in y axis and use Y ratio
+ minX = w.globals.yAxisScale[0].niceMin + (selectionRect.left - gridRectDim.left) * xyRatios.invertedYRatio;
+ maxX = w.globals.yAxisScale[0].niceMin + (selectionRect.right - gridRectDim.left) * xyRatios.invertedYRatio;
+ minY = 0; // there is no y min/max with rangebars (it uses categories, not numeric data), so use dummy values
+
+ maxY = 1;
+ }
+
+ var xyAxis = {
+ xaxis: {
+ min: minX,
+ max: maxX
+ },
+ yaxis: {
+ min: minY,
+ max: maxY
+ }
+ };
+ w.config.chart.events.selection(_this3.ctx, xyAxis);
+
+ if (w.config.chart.brush.enabled && w.config.chart.events.brushScrolled !== undefined) {
+ w.config.chart.events.brushScrolled(_this3.ctx, xyAxis);
+ }
+ }, timerInterval);
+ }
+ }
+ }, {
+ key: "selectionDrawn",
+ value: function selectionDrawn(_ref4) {
+ var context = _ref4.context,
+ zoomtype = _ref4.zoomtype;
+ var w = this.w;
+ var me = context;
+ var xyRatios = this.xyRatios;
+ var toolbar = this.ctx.toolbar;
+
+ if (me.startX > me.endX) {
+ var tempX = me.startX;
+ me.startX = me.endX;
+ me.endX = tempX;
+ }
+
+ if (me.startY > me.endY) {
+ var tempY = me.startY;
+ me.startY = me.endY;
+ me.endY = tempY;
+ }
+
+ var xLowestValue = undefined;
+ var xHighestValue = undefined;
+
+ if (!w.globals.isRangeBar) {
+ xLowestValue = w.globals.xAxisScale.niceMin + me.startX * xyRatios.xRatio;
+ xHighestValue = w.globals.xAxisScale.niceMin + me.endX * xyRatios.xRatio;
+ } else {
+ xLowestValue = w.globals.yAxisScale[0].niceMin + me.startX * xyRatios.invertedYRatio;
+ xHighestValue = w.globals.yAxisScale[0].niceMin + me.endX * xyRatios.invertedYRatio;
+ } // TODO: we will consider the 1st y axis values here for getting highest and lowest y
+
+
+ var yHighestValue = [];
+ var yLowestValue = [];
+ w.config.yaxis.forEach(function (yaxe, index) {
+ // We can use the index of any series referenced by the Yaxis
+ // because they will all return the same value.
+ var seriesIndex = w.globals.seriesYAxisMap[index][0];
+ yHighestValue.push(w.globals.yAxisScale[index].niceMax - xyRatios.yRatio[seriesIndex] * me.startY);
+ yLowestValue.push(w.globals.yAxisScale[index].niceMax - xyRatios.yRatio[seriesIndex] * me.endY);
+ });
+
+ if (me.dragged && (me.dragX > 10 || me.dragY > 10) && xLowestValue !== xHighestValue) {
+ if (w.globals.zoomEnabled) {
+ var yaxis = Utils$1.clone(w.globals.initialConfig.yaxis);
+ var xaxis = Utils$1.clone(w.globals.initialConfig.xaxis);
+ w.globals.zoomed = true;
+
+ if (w.config.xaxis.convertedCatToNumeric) {
+ xLowestValue = Math.floor(xLowestValue);
+ xHighestValue = Math.floor(xHighestValue);
+
+ if (xLowestValue < 1) {
+ xLowestValue = 1;
+ xHighestValue = w.globals.dataPoints;
+ }
+
+ if (xHighestValue - xLowestValue < 2) {
+ xHighestValue = xLowestValue + 1;
+ }
+ }
+
+ if (zoomtype === 'xy' || zoomtype === 'x') {
+ xaxis = {
+ min: xLowestValue,
+ max: xHighestValue
+ };
+ }
+
+ if (zoomtype === 'xy' || zoomtype === 'y') {
+ yaxis.forEach(function (yaxe, index) {
+ yaxis[index].min = yLowestValue[index];
+ yaxis[index].max = yHighestValue[index];
+ });
+ }
+
+ if (toolbar) {
+ var beforeZoomRange = toolbar.getBeforeZoomRange(xaxis, yaxis);
+
+ if (beforeZoomRange) {
+ xaxis = beforeZoomRange.xaxis ? beforeZoomRange.xaxis : xaxis;
+ yaxis = beforeZoomRange.yaxis ? beforeZoomRange.yaxis : yaxis;
+ }
+ }
+
+ var options = {
+ xaxis: xaxis
+ };
+
+ if (!w.config.chart.group) {
+ // if chart in a group, prevent yaxis update here
+ // fix issue #650
+ options.yaxis = yaxis;
+ }
+
+ me.ctx.updateHelpers._updateOptions(options, false, me.w.config.chart.animations.dynamicAnimation.enabled);
+
+ if (typeof w.config.chart.events.zoomed === 'function') {
+ toolbar.zoomCallback(xaxis, yaxis);
+ }
+ } else if (w.globals.selectionEnabled) {
+ var _yaxis = null;
+ var _xaxis = null;
+ _xaxis = {
+ min: xLowestValue,
+ max: xHighestValue
+ };
+
+ if (zoomtype === 'xy' || zoomtype === 'y') {
+ _yaxis = Utils$1.clone(w.config.yaxis);
+
+ _yaxis.forEach(function (yaxe, index) {
+ _yaxis[index].min = yLowestValue[index];
+ _yaxis[index].max = yHighestValue[index];
+ });
+ }
+
+ w.globals.selection = me.selection;
+
+ if (typeof w.config.chart.events.selection === 'function') {
+ w.config.chart.events.selection(me.ctx, {
+ xaxis: _xaxis,
+ yaxis: _yaxis
+ });
+ }
+ }
+ }
+ }
+ }, {
+ key: "panDragging",
+ value: function panDragging(_ref5) {
+ var context = _ref5.context;
+ var w = this.w;
+ var me = context; // check to make sure there is data to compare against
+
+ if (typeof w.globals.lastClientPosition.x !== 'undefined') {
+ // get the change from last position to this position
+ var deltaX = w.globals.lastClientPosition.x - me.clientX;
+ var deltaY = w.globals.lastClientPosition.y - me.clientY; // check which direction had the highest amplitude and then figure out direction by checking if the value is greater or less than zero
+
+ if (Math.abs(deltaX) > Math.abs(deltaY) && deltaX > 0) {
+ this.moveDirection = 'left';
+ } else if (Math.abs(deltaX) > Math.abs(deltaY) && deltaX < 0) {
+ this.moveDirection = 'right';
+ } else if (Math.abs(deltaY) > Math.abs(deltaX) && deltaY > 0) {
+ this.moveDirection = 'up';
+ } else if (Math.abs(deltaY) > Math.abs(deltaX) && deltaY < 0) {
+ this.moveDirection = 'down';
+ }
+ } // set the new last position to the current for next time (to get the position of drag)
+
+
+ w.globals.lastClientPosition = {
+ x: me.clientX,
+ y: me.clientY
+ };
+ var xLowestValue = w.globals.isRangeBar ? w.globals.minY : w.globals.minX;
+ var xHighestValue = w.globals.isRangeBar ? w.globals.maxY : w.globals.maxX; // on a category, we don't pan continuosly as it causes bugs
+
+ if (!w.config.xaxis.convertedCatToNumeric) {
+ me.panScrolled(xLowestValue, xHighestValue);
+ }
+ }
+ }, {
+ key: "delayedPanScrolled",
+ value: function delayedPanScrolled() {
+ var w = this.w;
+ var newMinX = w.globals.minX;
+ var newMaxX = w.globals.maxX;
+ var centerX = (w.globals.maxX - w.globals.minX) / 2;
+
+ if (this.moveDirection === 'left') {
+ newMinX = w.globals.minX + centerX;
+ newMaxX = w.globals.maxX + centerX;
+ } else if (this.moveDirection === 'right') {
+ newMinX = w.globals.minX - centerX;
+ newMaxX = w.globals.maxX - centerX;
+ }
+
+ newMinX = Math.floor(newMinX);
+ newMaxX = Math.floor(newMaxX);
+ this.updateScrolledChart({
+ xaxis: {
+ min: newMinX,
+ max: newMaxX
+ }
+ }, newMinX, newMaxX);
+ }
+ }, {
+ key: "panScrolled",
+ value: function panScrolled(xLowestValue, xHighestValue) {
+ var w = this.w;
+ var xyRatios = this.xyRatios;
+ var yaxis = Utils$1.clone(w.globals.initialConfig.yaxis);
+ var xRatio = xyRatios.xRatio;
+ var minX = w.globals.minX;
+ var maxX = w.globals.maxX;
+
+ if (w.globals.isRangeBar) {
+ xRatio = xyRatios.invertedYRatio;
+ minX = w.globals.minY;
+ maxX = w.globals.maxY;
+ }
+
+ if (this.moveDirection === 'left') {
+ xLowestValue = minX + w.globals.gridWidth / 15 * xRatio;
+ xHighestValue = maxX + w.globals.gridWidth / 15 * xRatio;
+ } else if (this.moveDirection === 'right') {
+ xLowestValue = minX - w.globals.gridWidth / 15 * xRatio;
+ xHighestValue = maxX - w.globals.gridWidth / 15 * xRatio;
+ }
+
+ if (!w.globals.isRangeBar) {
+ if (xLowestValue < w.globals.initialMinX || xHighestValue > w.globals.initialMaxX) {
+ xLowestValue = minX;
+ xHighestValue = maxX;
+ }
+ }
+ var options = {
+ xaxis: {
+ min: xLowestValue,
+ max: xHighestValue
+ }
+ };
+
+ if (!w.config.chart.group) {
+ // if chart in a group, prevent yaxis update here
+ // fix issue #650
+ options.yaxis = yaxis;
+ }
+
+ this.updateScrolledChart(options, xLowestValue, xHighestValue);
+ }
+ }, {
+ key: "updateScrolledChart",
+ value: function updateScrolledChart(options, xLowestValue, xHighestValue) {
+ var w = this.w;
+
+ this.ctx.updateHelpers._updateOptions(options, false, false);
+
+ if (typeof w.config.chart.events.scrolled === 'function') {
+ w.config.chart.events.scrolled(this.ctx, {
+ xaxis: {
+ min: xLowestValue,
+ max: xHighestValue
+ }
+ });
+ }
+ }
+ }]);
+
+ return ZoomPanSelection;
+ }(Toolbar);
+
+ /**
+ * ApexCharts Tooltip.Utils Class to support Tooltip functionality.
+ *
+ * @module Tooltip.Utils
+ **/
+
+ var Utils = /*#__PURE__*/function () {
+ function Utils(tooltipContext) {
+ _classCallCheck(this, Utils);
+
+ this.w = tooltipContext.w;
+ this.ttCtx = tooltipContext;
+ this.ctx = tooltipContext.ctx;
+ }
+ /**
+ ** When hovering over series, you need to capture which series is being hovered on.
+ ** This function will return both capturedseries index as well as inner index of that series
+ * @memberof Utils
+ * @param {object}
+ * - hoverArea = the rect on which user hovers
+ * - elGrid = dimensions of the hover rect (it can be different than hoverarea)
+ */
+
+
+ _createClass(Utils, [{
+ key: "getNearestValues",
+ value: function getNearestValues(_ref) {
+ var hoverArea = _ref.hoverArea,
+ elGrid = _ref.elGrid,
+ clientX = _ref.clientX,
+ clientY = _ref.clientY;
+ var w = this.w;
+ var seriesBound = elGrid.getBoundingClientRect();
+ var hoverWidth = seriesBound.width;
+ var hoverHeight = seriesBound.height;
+ var xDivisor = hoverWidth / (w.globals.dataPoints - 1);
+ var yDivisor = hoverHeight / w.globals.dataPoints;
+ var hasBars = this.hasBars();
+
+ if ((w.globals.comboCharts || hasBars) && !w.config.xaxis.convertedCatToNumeric) {
+ xDivisor = hoverWidth / w.globals.dataPoints;
+ }
+
+ var hoverX = clientX - seriesBound.left - w.globals.barPadForNumericAxis;
+ var hoverY = clientY - seriesBound.top;
+ var notInRect = hoverX < 0 || hoverY < 0 || hoverX > hoverWidth || hoverY > hoverHeight;
+
+ if (notInRect) {
+ hoverArea.classList.remove('hovering-zoom');
+ hoverArea.classList.remove('hovering-pan');
+ } else {
+ if (w.globals.zoomEnabled) {
+ hoverArea.classList.remove('hovering-pan');
+ hoverArea.classList.add('hovering-zoom');
+ } else if (w.globals.panEnabled) {
+ hoverArea.classList.remove('hovering-zoom');
+ hoverArea.classList.add('hovering-pan');
+ }
+ }
+
+ var j = Math.round(hoverX / xDivisor);
+ var jHorz = Math.floor(hoverY / yDivisor);
+
+ if (hasBars && !w.config.xaxis.convertedCatToNumeric) {
+ j = Math.ceil(hoverX / xDivisor);
+ j = j - 1;
+ }
+
+ var capturedSeries = null;
+ var closest = null;
+ var seriesXValArr = w.globals.seriesXvalues.map(function (seriesXVal) {
+ return seriesXVal.filter(function (s) {
+ return Utils$1.isNumber(s);
+ });
+ });
+ var seriesYValArr = w.globals.seriesYvalues.map(function (seriesYVal) {
+ return seriesYVal.filter(function (s) {
+ return Utils$1.isNumber(s);
+ });
+ }); // if X axis type is not category and tooltip is not shared, then we need to find the cursor position and get the nearest value
+
+ if (w.globals.isXNumeric) {
+ // Change origin of cursor position so that we can compute the relative nearest point to the cursor on our chart
+ // we only need to scale because all points are relative to the bounds.left and bounds.top => origin is virtually (0, 0)
+ var chartGridEl = this.ttCtx.getElGrid();
+ var chartGridElBoundingRect = chartGridEl.getBoundingClientRect();
+ var transformedHoverX = hoverX * (chartGridElBoundingRect.width / hoverWidth);
+ var transformedHoverY = hoverY * (chartGridElBoundingRect.height / hoverHeight);
+ closest = this.closestInMultiArray(transformedHoverX, transformedHoverY, seriesXValArr, seriesYValArr);
+ capturedSeries = closest.index;
+ j = closest.j;
+
+ if (capturedSeries !== null) {
+ // initial push, it should be a little smaller than the 1st val
+ seriesXValArr = w.globals.seriesXvalues[capturedSeries];
+ closest = this.closestInArray(transformedHoverX, seriesXValArr);
+ j = closest.index;
+ }
+ }
+
+ w.globals.capturedSeriesIndex = capturedSeries === null ? -1 : capturedSeries;
+ if (!j || j < 1) j = 0;
+
+ if (w.globals.isBarHorizontal) {
+ w.globals.capturedDataPointIndex = jHorz;
+ } else {
+ w.globals.capturedDataPointIndex = j;
+ }
+
+ return {
+ capturedSeries: capturedSeries,
+ j: w.globals.isBarHorizontal ? jHorz : j,
+ hoverX: hoverX,
+ hoverY: hoverY
+ };
+ }
+ }, {
+ key: "closestInMultiArray",
+ value: function closestInMultiArray(hoverX, hoverY, Xarrays, Yarrays) {
+ var w = this.w;
+ var activeIndex = 0;
+ var currIndex = null;
+ var j = -1;
+
+ if (w.globals.series.length > 1) {
+ activeIndex = this.getFirstActiveXArray(Xarrays);
+ } else {
+ currIndex = 0;
+ }
+
+ var currX = Xarrays[activeIndex][0];
+ var diffX = Math.abs(hoverX - currX); // find nearest point on x-axis
+
+ Xarrays.forEach(function (arrX) {
+ arrX.forEach(function (x, iX) {
+ var newDiff = Math.abs(hoverX - x);
+
+ if (newDiff <= diffX) {
+ diffX = newDiff;
+ j = iX;
+ }
+ });
+ });
+
+ if (j !== -1) {
+ // find nearest graph on y-axis relevanted to nearest point on x-axis
+ var currY = Yarrays[activeIndex][j];
+ var diffY = Math.abs(hoverY - currY);
+ currIndex = activeIndex;
+ Yarrays.forEach(function (arrY, iAY) {
+ var newDiff = Math.abs(hoverY - arrY[j]);
+
+ if (newDiff <= diffY) {
+ diffY = newDiff;
+ currIndex = iAY;
+ }
+ });
+ }
+
+ return {
+ index: currIndex,
+ j: j
+ };
+ }
+ }, {
+ key: "getFirstActiveXArray",
+ value: function getFirstActiveXArray(Xarrays) {
+ var w = this.w;
+ var activeIndex = 0;
+ var firstActiveSeriesIndex = Xarrays.map(function (xarr, index) {
+ return xarr.length > 0 ? index : -1;
+ });
+
+ for (var a = 0; a < firstActiveSeriesIndex.length; a++) {
+ if (firstActiveSeriesIndex[a] !== -1 && w.globals.collapsedSeriesIndices.indexOf(a) === -1 && w.globals.ancillaryCollapsedSeriesIndices.indexOf(a) === -1) {
+ activeIndex = firstActiveSeriesIndex[a];
+ break;
+ }
+ }
+
+ return activeIndex;
+ }
+ }, {
+ key: "closestInArray",
+ value: function closestInArray(val, arr) {
+ var curr = arr[0];
+ var currIndex = null;
+ var diff = Math.abs(val - curr);
+
+ for (var i = 0; i < arr.length; i++) {
+ var newdiff = Math.abs(val - arr[i]);
+
+ if (newdiff < diff) {
+ diff = newdiff;
+ currIndex = i;
+ }
+ }
+
+ return {
+ index: currIndex
+ };
+ }
+ /**
+ * When there are multiple series, it is possible to have different x values for each series.
+ * But it may be possible in those multiple series, that there is same x value for 2 or more
+ * series.
+ * @memberof Utils
+ * @param {int}
+ * - j = is the inner index of series -> (series[i][j])
+ * @return {bool}
+ */
+
+ }, {
+ key: "isXoverlap",
+ value: function isXoverlap(j) {
+ var w = this.w;
+ var xSameForAllSeriesJArr = [];
+ var seriesX = w.globals.seriesX.filter(function (s) {
+ return typeof s[0] !== 'undefined';
+ });
+
+ if (seriesX.length > 0) {
+ for (var i = 0; i < seriesX.length - 1; i++) {
+ if (typeof seriesX[i][j] !== 'undefined' && typeof seriesX[i + 1][j] !== 'undefined') {
+ if (seriesX[i][j] !== seriesX[i + 1][j]) {
+ xSameForAllSeriesJArr.push('unEqual');
+ }
+ }
+ }
+ }
+
+ if (xSameForAllSeriesJArr.length === 0) {
+ return true;
+ }
+
+ return false;
+ }
+ }, {
+ key: "isInitialSeriesSameLen",
+ value: function isInitialSeriesSameLen() {
+ var sameLen = true;
+ var initialSeries = this.w.globals.initialSeries;
+
+ for (var i = 0; i < initialSeries.length - 1; i++) {
+ if (initialSeries[i].data.length !== initialSeries[i + 1].data.length) {
+ sameLen = false;
+ break;
+ }
+ }
+
+ return sameLen;
+ }
+ }, {
+ key: "getBarsHeight",
+ value: function getBarsHeight(allbars) {
+ var bars = _toConsumableArray(allbars);
+
+ var totalHeight = bars.reduce(function (acc, bar) {
+ return acc + bar.getBBox().height;
+ }, 0);
+ return totalHeight;
+ }
+ }, {
+ key: "getElMarkers",
+ value: function getElMarkers(capturedSeries) {
+ // The selector .apexcharts-series-markers-wrap > * includes marker groups for which the
+ // .apexcharts-series-markers class is not added due to null values or discrete markers
+ if (typeof capturedSeries == 'number') {
+ return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series[data\\:realIndex='".concat(capturedSeries, "'] .apexcharts-series-markers-wrap > *"));
+ }
+
+ return this.w.globals.dom.baseEl.querySelectorAll('.apexcharts-series-markers-wrap > *');
+ }
+ }, {
+ key: "getAllMarkers",
+ value: function getAllMarkers() {
+ // first get all marker parents. This parent class contains series-index
+ // which helps to sort the markers as they are dynamic
+ var markersWraps = this.w.globals.dom.baseEl.querySelectorAll('.apexcharts-series-markers-wrap');
+ markersWraps = _toConsumableArray(markersWraps);
+ markersWraps.sort(function (a, b) {
+ var indexA = Number(a.getAttribute('data:realIndex'));
+ var indexB = Number(b.getAttribute('data:realIndex'));
+ return indexB < indexA ? 1 : indexB > indexA ? -1 : 0;
+ });
+ var markers = [];
+ markersWraps.forEach(function (m) {
+ markers.push(m.querySelector('.apexcharts-marker'));
+ });
+ return markers;
+ }
+ }, {
+ key: "hasMarkers",
+ value: function hasMarkers(capturedSeries) {
+ var markers = this.getElMarkers(capturedSeries);
+ return markers.length > 0;
+ }
+ }, {
+ key: "getElBars",
+ value: function getElBars() {
+ return this.w.globals.dom.baseEl.querySelectorAll('.apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series');
+ }
+ }, {
+ key: "hasBars",
+ value: function hasBars() {
+ var bars = this.getElBars();
+ return bars.length > 0;
+ }
+ }, {
+ key: "getHoverMarkerSize",
+ value: function getHoverMarkerSize(index) {
+ var w = this.w;
+ var hoverSize = w.config.markers.hover.size;
+
+ if (hoverSize === undefined) {
+ hoverSize = w.globals.markers.size[index] + w.config.markers.hover.sizeOffset;
+ }
+
+ return hoverSize;
+ }
+ }, {
+ key: "toggleAllTooltipSeriesGroups",
+ value: function toggleAllTooltipSeriesGroups(state) {
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+
+ if (ttCtx.allTooltipSeriesGroups.length === 0) {
+ ttCtx.allTooltipSeriesGroups = w.globals.dom.baseEl.querySelectorAll('.apexcharts-tooltip-series-group');
+ }
+
+ var allTooltipSeriesGroups = ttCtx.allTooltipSeriesGroups;
+
+ for (var i = 0; i < allTooltipSeriesGroups.length; i++) {
+ if (state === 'enable') {
+ allTooltipSeriesGroups[i].classList.add('apexcharts-active');
+ allTooltipSeriesGroups[i].style.display = w.config.tooltip.items.display;
+ } else {
+ allTooltipSeriesGroups[i].classList.remove('apexcharts-active');
+ allTooltipSeriesGroups[i].style.display = 'none';
+ }
+ }
+ }
+ }]);
+
+ return Utils;
+ }();
+
+ /**
+ * ApexCharts Tooltip.Labels Class to draw texts on the tooltip.
+ * This file deals with printing actual text on the tooltip.
+ *
+ * @module Tooltip.Labels
+ **/
+
+ var Labels = /*#__PURE__*/function () {
+ function Labels(tooltipContext) {
+ _classCallCheck(this, Labels);
+
+ this.w = tooltipContext.w;
+ this.ctx = tooltipContext.ctx;
+ this.ttCtx = tooltipContext;
+ this.tooltipUtil = new Utils(tooltipContext);
+ }
+
+ _createClass(Labels, [{
+ key: "drawSeriesTexts",
+ value: function drawSeriesTexts(_ref) {
+ var _ref$shared = _ref.shared,
+ shared = _ref$shared === void 0 ? true : _ref$shared,
+ ttItems = _ref.ttItems,
+ _ref$i = _ref.i,
+ i = _ref$i === void 0 ? 0 : _ref$i,
+ _ref$j = _ref.j,
+ j = _ref$j === void 0 ? null : _ref$j,
+ y1 = _ref.y1,
+ y2 = _ref.y2,
+ e = _ref.e;
+ var w = this.w;
+
+ if (w.config.tooltip.custom !== undefined) {
+ this.handleCustomTooltip({
+ i: i,
+ j: j,
+ y1: y1,
+ y2: y2,
+ w: w
+ });
+ } else {
+ this.toggleActiveInactiveSeries(shared);
+ }
+
+ var values = this.getValuesToPrint({
+ i: i,
+ j: j
+ });
+ this.printLabels({
+ i: i,
+ j: j,
+ values: values,
+ ttItems: ttItems,
+ shared: shared,
+ e: e
+ }); // Re-calculate tooltip dimensions now that we have drawn the text
+
+ var tooltipEl = this.ttCtx.getElTooltip();
+ this.ttCtx.tooltipRect.ttWidth = tooltipEl.getBoundingClientRect().width;
+ this.ttCtx.tooltipRect.ttHeight = tooltipEl.getBoundingClientRect().height;
+ }
+ }, {
+ key: "printLabels",
+ value: function printLabels(_ref2) {
+ var _this = this;
+
+ var i = _ref2.i,
+ j = _ref2.j,
+ values = _ref2.values,
+ ttItems = _ref2.ttItems,
+ shared = _ref2.shared,
+ e = _ref2.e;
+ var w = this.w;
+ var val;
+ var goalVals = [];
+
+ var hasGoalValues = function hasGoalValues(gi) {
+ return w.globals.seriesGoals[gi] && w.globals.seriesGoals[gi][j] && Array.isArray(w.globals.seriesGoals[gi][j]);
+ };
+
+ var xVal = values.xVal,
+ zVal = values.zVal,
+ xAxisTTVal = values.xAxisTTVal;
+ var seriesName = '';
+ var pColor = w.globals.colors[i]; // The pColor here is for the markers inside tooltip
+
+ if (j !== null && w.config.plotOptions.bar.distributed) {
+ pColor = w.globals.colors[j];
+ }
+
+ var _loop = function _loop(t, inverset) {
+ var f = _this.getFormatters(i);
+
+ seriesName = _this.getSeriesName({
+ fn: f.yLbTitleFormatter,
+ index: i,
+ seriesIndex: i,
+ j: j
+ });
+
+ if (w.config.chart.type === 'treemap') {
+ seriesName = f.yLbTitleFormatter(String(w.config.series[i].data[j].x), {
+ series: w.globals.series,
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ });
+ }
+
+ var tIndex = w.config.tooltip.inverseOrder ? inverset : t;
+
+ if (w.globals.axisCharts) {
+ var getValBySeriesIndex = function getValBySeriesIndex(index) {
+ if (w.globals.isRangeData) {
+ var _w$globals$seriesRang, _w$globals$seriesRang2, _w$globals$seriesRang3, _w$globals$seriesRang4;
+
+ return f.yLbFormatter((_w$globals$seriesRang = w.globals.seriesRangeStart) === null || _w$globals$seriesRang === void 0 ? void 0 : (_w$globals$seriesRang2 = _w$globals$seriesRang[index]) === null || _w$globals$seriesRang2 === void 0 ? void 0 : _w$globals$seriesRang2[j], {
+ series: w.globals.seriesRangeStart,
+ seriesIndex: index,
+ dataPointIndex: j,
+ w: w
+ }) + ' - ' + f.yLbFormatter((_w$globals$seriesRang3 = w.globals.seriesRangeEnd) === null || _w$globals$seriesRang3 === void 0 ? void 0 : (_w$globals$seriesRang4 = _w$globals$seriesRang3[index]) === null || _w$globals$seriesRang4 === void 0 ? void 0 : _w$globals$seriesRang4[j], {
+ series: w.globals.seriesRangeEnd,
+ seriesIndex: index,
+ dataPointIndex: j,
+ w: w
+ });
+ }
+
+ return f.yLbFormatter(w.globals.series[index][j], {
+ series: w.globals.series,
+ seriesIndex: index,
+ dataPointIndex: j,
+ w: w
+ });
+ };
+
+ if (shared) {
+ f = _this.getFormatters(tIndex);
+ seriesName = _this.getSeriesName({
+ fn: f.yLbTitleFormatter,
+ index: tIndex,
+ seriesIndex: i,
+ j: j
+ });
+ pColor = w.globals.colors[tIndex];
+ val = getValBySeriesIndex(tIndex);
+
+ if (hasGoalValues(tIndex)) {
+ goalVals = w.globals.seriesGoals[tIndex][j].map(function (goal) {
+ return {
+ attrs: goal,
+ val: f.yLbFormatter(goal.value, {
+ seriesIndex: tIndex,
+ dataPointIndex: j,
+ w: w
+ })
+ };
+ });
+ }
+ } else {
+ var _e$target;
+
+ // get a color from a hover area (if it's a line pattern then get from a first line)
+ var targetFill = e === null || e === void 0 ? void 0 : (_e$target = e.target) === null || _e$target === void 0 ? void 0 : _e$target.getAttribute('fill');
+
+ if (targetFill) {
+ pColor = targetFill.indexOf('url') !== -1 ? document.querySelector(targetFill.substr(4).slice(0, -1)).childNodes[0].getAttribute('stroke') : targetFill;
+ }
+
+ val = getValBySeriesIndex(i);
+
+ if (hasGoalValues(i) && Array.isArray(w.globals.seriesGoals[i][j])) {
+ goalVals = w.globals.seriesGoals[i][j].map(function (goal) {
+ return {
+ attrs: goal,
+ val: f.yLbFormatter(goal.value, {
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ })
+ };
+ });
+ }
+ }
+ } // for pie / donuts
+
+
+ if (j === null) {
+ val = f.yLbFormatter(w.globals.series[i], _objectSpread2(_objectSpread2({}, w), {}, {
+ seriesIndex: i,
+ dataPointIndex: i
+ }));
+ }
+
+ _this.DOMHandling({
+ i: i,
+ t: tIndex,
+ j: j,
+ ttItems: ttItems,
+ values: {
+ val: val,
+ goalVals: goalVals,
+ xVal: xVal,
+ xAxisTTVal: xAxisTTVal,
+ zVal: zVal
+ },
+ seriesName: seriesName,
+ shared: shared,
+ pColor: pColor
+ });
+ };
+
+ for (var t = 0, inverset = w.globals.series.length - 1; t < w.globals.series.length; t++, inverset--) {
+ _loop(t, inverset);
+ }
+ }
+ }, {
+ key: "getFormatters",
+ value: function getFormatters(i) {
+ var w = this.w;
+ var yLbFormatter = w.globals.yLabelFormatters[i];
+ var yLbTitleFormatter;
+
+ if (w.globals.ttVal !== undefined) {
+ if (Array.isArray(w.globals.ttVal)) {
+ yLbFormatter = w.globals.ttVal[i] && w.globals.ttVal[i].formatter;
+ yLbTitleFormatter = w.globals.ttVal[i] && w.globals.ttVal[i].title && w.globals.ttVal[i].title.formatter;
+ } else {
+ yLbFormatter = w.globals.ttVal.formatter;
+
+ if (typeof w.globals.ttVal.title.formatter === 'function') {
+ yLbTitleFormatter = w.globals.ttVal.title.formatter;
+ }
+ }
+ } else {
+ yLbTitleFormatter = w.config.tooltip.y.title.formatter;
+ }
+
+ if (typeof yLbFormatter !== 'function') {
+ if (w.globals.yLabelFormatters[0]) {
+ yLbFormatter = w.globals.yLabelFormatters[0];
+ } else {
+ yLbFormatter = function yLbFormatter(label) {
+ return label;
+ };
+ }
+ }
+
+ if (typeof yLbTitleFormatter !== 'function') {
+ yLbTitleFormatter = function yLbTitleFormatter(label) {
+ return label;
+ };
+ }
+
+ return {
+ yLbFormatter: yLbFormatter,
+ yLbTitleFormatter: yLbTitleFormatter
+ };
+ }
+ }, {
+ key: "getSeriesName",
+ value: function getSeriesName(_ref3) {
+ var fn = _ref3.fn,
+ index = _ref3.index,
+ seriesIndex = _ref3.seriesIndex,
+ j = _ref3.j;
+ var w = this.w;
+ return fn(String(w.globals.seriesNames[index]), {
+ series: w.globals.series,
+ seriesIndex: seriesIndex,
+ dataPointIndex: j,
+ w: w
+ });
+ }
+ }, {
+ key: "DOMHandling",
+ value: function DOMHandling(_ref4) {
+ _ref4.i;
+ var t = _ref4.t,
+ j = _ref4.j,
+ ttItems = _ref4.ttItems,
+ values = _ref4.values,
+ seriesName = _ref4.seriesName,
+ shared = _ref4.shared,
+ pColor = _ref4.pColor;
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+ var val = values.val,
+ goalVals = values.goalVals,
+ xVal = values.xVal,
+ xAxisTTVal = values.xAxisTTVal,
+ zVal = values.zVal;
+ var ttItemsChildren = null;
+ ttItemsChildren = ttItems[t].children;
+
+ if (w.config.tooltip.fillSeriesColor) {
+ ttItems[t].style.backgroundColor = pColor;
+ ttItemsChildren[0].style.display = 'none';
+ }
+
+ if (ttCtx.showTooltipTitle) {
+ if (ttCtx.tooltipTitle === null) {
+ // get it once if null, and store it in class property
+ ttCtx.tooltipTitle = w.globals.dom.baseEl.querySelector('.apexcharts-tooltip-title');
+ }
+
+ ttCtx.tooltipTitle.innerHTML = xVal;
+ } // if xaxis tooltip is constructed, we need to replace the innerHTML
+
+
+ if (ttCtx.isXAxisTooltipEnabled) {
+ ttCtx.xaxisTooltipText.innerHTML = xAxisTTVal !== '' ? xAxisTTVal : xVal;
+ }
+
+ var ttYLabel = ttItems[t].querySelector('.apexcharts-tooltip-text-y-label');
+
+ if (ttYLabel) {
+ ttYLabel.innerHTML = seriesName ? seriesName : '';
+ }
+
+ var ttYVal = ttItems[t].querySelector('.apexcharts-tooltip-text-y-value');
+
+ if (ttYVal) {
+ ttYVal.innerHTML = typeof val !== 'undefined' ? val : '';
+ }
+
+ if (ttItemsChildren[0] && ttItemsChildren[0].classList.contains('apexcharts-tooltip-marker')) {
+ if (w.config.tooltip.marker.fillColors && Array.isArray(w.config.tooltip.marker.fillColors)) {
+ pColor = w.config.tooltip.marker.fillColors[t];
+ }
+
+ ttItemsChildren[0].style.backgroundColor = pColor;
+ }
+
+ if (!w.config.tooltip.marker.show) {
+ ttItemsChildren[0].style.display = 'none';
+ }
+
+ var ttGLabel = ttItems[t].querySelector('.apexcharts-tooltip-text-goals-label');
+ var ttGVal = ttItems[t].querySelector('.apexcharts-tooltip-text-goals-value');
+
+ if (goalVals.length && w.globals.seriesGoals[t]) {
+ var createGoalsHtml = function createGoalsHtml() {
+ var gLabels = '';
+ var gVals = '
';
+ goalVals.forEach(function (goal, gi) {
+ gLabels += "
").concat(goal.attrs.name, "
");
+ gVals += "
".concat(goal.val, "
");
+ });
+ ttGLabel.innerHTML = gLabels + "
";
+ ttGVal.innerHTML = gVals + "
";
+ };
+
+ if (shared) {
+ if (w.globals.seriesGoals[t][j] && Array.isArray(w.globals.seriesGoals[t][j])) {
+ createGoalsHtml();
+ } else {
+ ttGLabel.innerHTML = '';
+ ttGVal.innerHTML = '';
+ }
+ } else {
+ createGoalsHtml();
+ }
+ } else {
+ ttGLabel.innerHTML = '';
+ ttGVal.innerHTML = '';
+ }
+
+ if (zVal !== null) {
+ var ttZLabel = ttItems[t].querySelector('.apexcharts-tooltip-text-z-label');
+ ttZLabel.innerHTML = w.config.tooltip.z.title;
+ var ttZVal = ttItems[t].querySelector('.apexcharts-tooltip-text-z-value');
+ ttZVal.innerHTML = typeof zVal !== 'undefined' ? zVal : '';
+ }
+
+ if (shared && ttItemsChildren[0]) {
+ // hide when no Val or series collapsed
+ if (w.config.tooltip.hideEmptySeries) {
+ var ttItemMarker = ttItems[t].querySelector('.apexcharts-tooltip-marker');
+ var ttItemText = ttItems[t].querySelector('.apexcharts-tooltip-text');
+
+ if (parseFloat(val) == 0) {
+ ttItemMarker.style.display = 'none';
+ ttItemText.style.display = 'none';
+ } else {
+ ttItemMarker.style.display = 'block';
+ ttItemText.style.display = 'block';
+ }
+ }
+
+ if (typeof val === 'undefined' || val === null || w.globals.ancillaryCollapsedSeriesIndices.indexOf(t) > -1 || w.globals.collapsedSeriesIndices.indexOf(t) > -1) {
+ ttItemsChildren[0].parentNode.style.display = 'none';
+ } else {
+ ttItemsChildren[0].parentNode.style.display = w.config.tooltip.items.display;
+ }
+ }
+ }
+ }, {
+ key: "toggleActiveInactiveSeries",
+ value: function toggleActiveInactiveSeries(shared) {
+ var w = this.w;
+
+ if (shared) {
+ // make all tooltips active
+ this.tooltipUtil.toggleAllTooltipSeriesGroups('enable');
+ } else {
+ // disable all tooltip text groups
+ this.tooltipUtil.toggleAllTooltipSeriesGroups('disable'); // enable the first tooltip text group
+
+ var firstTooltipSeriesGroup = w.globals.dom.baseEl.querySelector('.apexcharts-tooltip-series-group');
+
+ if (firstTooltipSeriesGroup) {
+ firstTooltipSeriesGroup.classList.add('apexcharts-active');
+ firstTooltipSeriesGroup.style.display = w.config.tooltip.items.display;
+ }
+ }
+ }
+ }, {
+ key: "getValuesToPrint",
+ value: function getValuesToPrint(_ref5) {
+ var i = _ref5.i,
+ j = _ref5.j;
+ var w = this.w;
+ var filteredSeriesX = this.ctx.series.filteredSeriesX();
+ var xVal = '';
+ var xAxisTTVal = '';
+ var zVal = null;
+ var val = null;
+ var customFormatterOpts = {
+ series: w.globals.series,
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ };
+ var zFormatter = w.globals.ttZFormatter;
+
+ if (j === null) {
+ val = w.globals.series[i];
+ } else {
+ if (w.globals.isXNumeric && w.config.chart.type !== 'treemap') {
+ xVal = filteredSeriesX[i][j];
+
+ if (filteredSeriesX[i].length === 0) {
+ // a series (possibly the first one) might be collapsed, so get the next active index
+ var firstActiveSeriesIndex = this.tooltipUtil.getFirstActiveXArray(filteredSeriesX);
+ xVal = filteredSeriesX[firstActiveSeriesIndex][j];
+ }
+ } else {
+ xVal = typeof w.globals.labels[j] !== 'undefined' ? w.globals.labels[j] : '';
+ }
+ }
+
+ var bufferXVal = xVal;
+
+ if (w.globals.isXNumeric && w.config.xaxis.type === 'datetime') {
+ var xFormat = new Formatters(this.ctx);
+ xVal = xFormat.xLabelFormat(w.globals.ttKeyFormatter, bufferXVal, bufferXVal, {
+ i: undefined,
+ dateFormatter: new DateTime(this.ctx).formatDate,
+ w: this.w
+ });
+ } else {
+ if (w.globals.isBarHorizontal) {
+ xVal = w.globals.yLabelFormatters[0](bufferXVal, customFormatterOpts);
+ } else {
+ xVal = w.globals.xLabelFormatter(bufferXVal, customFormatterOpts);
+ }
+ } // override default x-axis formatter with tooltip formatter
+
+
+ if (w.config.tooltip.x.formatter !== undefined) {
+ xVal = w.globals.ttKeyFormatter(bufferXVal, customFormatterOpts);
+ }
+
+ if (w.globals.seriesZ.length > 0 && w.globals.seriesZ[i].length > 0) {
+ zVal = zFormatter(w.globals.seriesZ[i][j], w);
+ }
+
+ if (typeof w.config.xaxis.tooltip.formatter === 'function') {
+ xAxisTTVal = w.globals.xaxisTooltipFormatter(bufferXVal, customFormatterOpts);
+ } else {
+ xAxisTTVal = xVal;
+ }
+
+ return {
+ val: Array.isArray(val) ? val.join(' ') : val,
+ xVal: Array.isArray(xVal) ? xVal.join(' ') : xVal,
+ xAxisTTVal: Array.isArray(xAxisTTVal) ? xAxisTTVal.join(' ') : xAxisTTVal,
+ zVal: zVal
+ };
+ }
+ }, {
+ key: "handleCustomTooltip",
+ value: function handleCustomTooltip(_ref6) {
+ var i = _ref6.i,
+ j = _ref6.j,
+ y1 = _ref6.y1,
+ y2 = _ref6.y2,
+ w = _ref6.w;
+ var tooltipEl = this.ttCtx.getElTooltip();
+ var fn = w.config.tooltip.custom;
+
+ if (Array.isArray(fn) && fn[i]) {
+ fn = fn[i];
+ } // override everything with a custom html tooltip and replace it
+
+
+ tooltipEl.innerHTML = fn({
+ ctx: this.ctx,
+ series: w.globals.series,
+ seriesIndex: i,
+ dataPointIndex: j,
+ y1: y1,
+ y2: y2,
+ w: w
+ });
+ }
+ }]);
+
+ return Labels;
+ }();
+
+ /**
+ * ApexCharts Tooltip.Position Class to move the tooltip based on x and y position.
+ *
+ * @module Tooltip.Position
+ **/
+
+ var Position = /*#__PURE__*/function () {
+ function Position(tooltipContext) {
+ _classCallCheck(this, Position);
+
+ this.ttCtx = tooltipContext;
+ this.ctx = tooltipContext.ctx;
+ this.w = tooltipContext.w;
+ }
+ /**
+ * This will move the crosshair (the vertical/horz line that moves along with mouse)
+ * Along with this, this function also calls the xaxisMove function
+ * @memberof Position
+ * @param {int} - cx = point's x position, wherever point's x is, you need to move crosshair
+ */
+
+
+ _createClass(Position, [{
+ key: "moveXCrosshairs",
+ value: function moveXCrosshairs(cx) {
+ var j = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
+ var ttCtx = this.ttCtx;
+ var w = this.w;
+ var xcrosshairs = ttCtx.getElXCrosshairs();
+ var x = cx - ttCtx.xcrosshairsWidth / 2;
+ var tickAmount = w.globals.labels.slice().length;
+
+ if (j !== null) {
+ x = w.globals.gridWidth / tickAmount * j;
+ }
+
+ if (xcrosshairs !== null && !w.globals.isBarHorizontal) {
+ xcrosshairs.setAttribute('x', x);
+ xcrosshairs.setAttribute('x1', x);
+ xcrosshairs.setAttribute('x2', x);
+ xcrosshairs.setAttribute('y2', w.globals.gridHeight);
+ xcrosshairs.classList.add('apexcharts-active');
+ }
+
+ if (x < 0) {
+ x = 0;
+ }
+
+ if (x > w.globals.gridWidth) {
+ x = w.globals.gridWidth;
+ }
+
+ if (ttCtx.isXAxisTooltipEnabled) {
+ var tx = x;
+
+ if (w.config.xaxis.crosshairs.width === 'tickWidth' || w.config.xaxis.crosshairs.width === 'barWidth') {
+ tx = x + ttCtx.xcrosshairsWidth / 2;
+ }
+
+ this.moveXAxisTooltip(tx);
+ }
+ }
+ /**
+ * This will move the crosshair (the vertical/horz line that moves along with mouse)
+ * Along with this, this function also calls the xaxisMove function
+ * @memberof Position
+ * @param {int} - cx = point's x position, wherever point's x is, you need to move crosshair
+ */
+
+ }, {
+ key: "moveYCrosshairs",
+ value: function moveYCrosshairs(cy) {
+ var ttCtx = this.ttCtx;
+
+ if (ttCtx.ycrosshairs !== null) {
+ Graphics.setAttrs(ttCtx.ycrosshairs, {
+ y1: cy,
+ y2: cy
+ });
+ }
+
+ if (ttCtx.ycrosshairsHidden !== null) {
+ Graphics.setAttrs(ttCtx.ycrosshairsHidden, {
+ y1: cy,
+ y2: cy
+ });
+ }
+ }
+ /**
+ ** AxisTooltip is the small rectangle which appears on x axis with x value, when user moves
+ * @memberof Position
+ * @param {int} - cx = point's x position, wherever point's x is, you need to move
+ */
+
+ }, {
+ key: "moveXAxisTooltip",
+ value: function moveXAxisTooltip(cx) {
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+
+ if (ttCtx.xaxisTooltip !== null && ttCtx.xcrosshairsWidth !== 0) {
+ ttCtx.xaxisTooltip.classList.add('apexcharts-active');
+ var cy = ttCtx.xaxisOffY + w.config.xaxis.tooltip.offsetY + w.globals.translateY + 1 + w.config.xaxis.offsetY;
+ var xaxisTTText = ttCtx.xaxisTooltip.getBoundingClientRect();
+ var xaxisTTTextWidth = xaxisTTText.width;
+ cx = cx - xaxisTTTextWidth / 2;
+
+ if (!isNaN(cx)) {
+ cx = cx + w.globals.translateX;
+ var textRect = 0;
+ var graphics = new Graphics(this.ctx);
+ textRect = graphics.getTextRects(ttCtx.xaxisTooltipText.innerHTML);
+ ttCtx.xaxisTooltipText.style.minWidth = textRect.width + 'px';
+ ttCtx.xaxisTooltip.style.left = cx + 'px';
+ ttCtx.xaxisTooltip.style.top = cy + 'px';
+ }
+ }
+ }
+ }, {
+ key: "moveYAxisTooltip",
+ value: function moveYAxisTooltip(index) {
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+
+ if (ttCtx.yaxisTTEls === null) {
+ ttCtx.yaxisTTEls = w.globals.dom.baseEl.querySelectorAll('.apexcharts-yaxistooltip');
+ }
+
+ var ycrosshairsHiddenRectY1 = parseInt(ttCtx.ycrosshairsHidden.getAttribute('y1'), 10);
+ var cy = w.globals.translateY + ycrosshairsHiddenRectY1;
+ var yAxisTTRect = ttCtx.yaxisTTEls[index].getBoundingClientRect();
+ var yAxisTTHeight = yAxisTTRect.height;
+ var cx = w.globals.translateYAxisX[index] - 2;
+
+ if (w.config.yaxis[index].opposite) {
+ cx = cx - 26;
+ }
+
+ cy = cy - yAxisTTHeight / 2;
+
+ if (w.globals.ignoreYAxisIndexes.indexOf(index) === -1) {
+ ttCtx.yaxisTTEls[index].classList.add('apexcharts-active');
+ ttCtx.yaxisTTEls[index].style.top = cy + 'px';
+ ttCtx.yaxisTTEls[index].style.left = cx + w.config.yaxis[index].tooltip.offsetX + 'px';
+ } else {
+ ttCtx.yaxisTTEls[index].classList.remove('apexcharts-active');
+ }
+ }
+ /**
+ ** moves the whole tooltip by changing x, y attrs
+ * @memberof Position
+ * @param {int} - cx = point's x position, wherever point's x is, you need to move tooltip
+ * @param {int} - cy = point's y position, wherever point's y is, you need to move tooltip
+ * @param {int} - r = point's radius
+ */
+
+ }, {
+ key: "moveTooltip",
+ value: function moveTooltip(cx, cy) {
+ var r = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+ var tooltipEl = ttCtx.getElTooltip();
+ var tooltipRect = ttCtx.tooltipRect;
+ var pointR = r !== null ? parseFloat(r) : 1;
+ var x = parseFloat(cx) + pointR + 5;
+ var y = parseFloat(cy) + pointR / 2; // - tooltipRect.ttHeight / 2
+
+ if (x > w.globals.gridWidth / 2) {
+ x = x - tooltipRect.ttWidth - pointR - 10;
+ }
+
+ if (x > w.globals.gridWidth - tooltipRect.ttWidth - 10) {
+ x = w.globals.gridWidth - tooltipRect.ttWidth;
+ }
+
+ if (x < -20) {
+ x = -20;
+ }
+
+ if (w.config.tooltip.followCursor) {
+ var elGrid = ttCtx.getElGrid();
+ var seriesBound = elGrid.getBoundingClientRect();
+ x = ttCtx.e.clientX - seriesBound.left;
+
+ if (x > w.globals.gridWidth / 2) {
+ x = x - ttCtx.tooltipRect.ttWidth;
+ }
+
+ y = ttCtx.e.clientY + w.globals.translateY - seriesBound.top;
+
+ if (y > w.globals.gridHeight / 2) {
+ y = y - ttCtx.tooltipRect.ttHeight;
+ }
+ } else {
+ if (!w.globals.isBarHorizontal) {
+ if (tooltipRect.ttHeight / 2 + y > w.globals.gridHeight) {
+ y = w.globals.gridHeight - tooltipRect.ttHeight + w.globals.translateY;
+ }
+ }
+ }
+
+ if (!isNaN(x)) {
+ x = x + w.globals.translateX;
+ tooltipEl.style.left = x + 'px';
+ tooltipEl.style.top = y + 'px';
+ }
+ }
+ }, {
+ key: "moveMarkers",
+ value: function moveMarkers(i, j) {
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+
+ if (w.globals.markers.size[i] > 0) {
+ var allPoints = w.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(i, "'] .apexcharts-marker"));
+
+ for (var p = 0; p < allPoints.length; p++) {
+ if (parseInt(allPoints[p].getAttribute('rel'), 10) === j) {
+ ttCtx.marker.resetPointsSize();
+ ttCtx.marker.enlargeCurrentPoint(j, allPoints[p]);
+ }
+ }
+ } else {
+ ttCtx.marker.resetPointsSize();
+ this.moveDynamicPointOnHover(j, i);
+ }
+ } // This function is used when you need to show markers/points only on hover -
+ // DIFFERENT X VALUES in multiple series
+
+ }, {
+ key: "moveDynamicPointOnHover",
+ value: function moveDynamicPointOnHover(j, capturedSeries) {
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+ var cx = 0;
+ var cy = 0;
+ var pointsArr = w.globals.pointsArray;
+ var hoverSize = ttCtx.tooltipUtil.getHoverMarkerSize(capturedSeries);
+ var serType = w.config.series[capturedSeries].type;
+
+ if (serType && (serType === 'column' || serType === 'candlestick' || serType === 'boxPlot')) {
+ // fix error mentioned in #811
+ return;
+ }
+
+ cx = pointsArr[capturedSeries][j][0];
+ cy = pointsArr[capturedSeries][j][1] ? pointsArr[capturedSeries][j][1] : 0;
+ var point = w.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(capturedSeries, "'] .apexcharts-series-markers circle"));
+
+ if (point && cy < w.globals.gridHeight && cy > 0) {
+ point.setAttribute('r', hoverSize);
+ point.setAttribute('cx', cx);
+ point.setAttribute('cy', cy);
+ } // point.style.opacity = w.config.markers.hover.opacity
+
+
+ this.moveXCrosshairs(cx);
+
+ if (!ttCtx.fixedTooltip) {
+ this.moveTooltip(cx, cy, hoverSize);
+ }
+ } // This function is used when you need to show markers/points only on hover -
+ // SAME X VALUES in multiple series
+
+ }, {
+ key: "moveDynamicPointsOnHover",
+ value: function moveDynamicPointsOnHover(j) {
+ var ttCtx = this.ttCtx;
+ var w = ttCtx.w;
+ var cx = 0;
+ var cy = 0;
+ var activeSeries = 0;
+ var pointsArr = w.globals.pointsArray;
+ var series = new Series(this.ctx);
+ activeSeries = series.getActiveConfigSeriesIndex('asc', ['line', 'area', 'scatter', 'bubble']);
+ var hoverSize = ttCtx.tooltipUtil.getHoverMarkerSize(activeSeries);
+
+ if (pointsArr[activeSeries]) {
+ cx = pointsArr[activeSeries][j][0];
+ cy = pointsArr[activeSeries][j][1];
+ }
+
+ var points = ttCtx.tooltipUtil.getAllMarkers();
+
+ if (points !== null) {
+ for (var p = 0; p < w.globals.series.length; p++) {
+ var pointArr = pointsArr[p];
+
+ if (w.globals.comboCharts) {
+ // in a combo chart, if column charts are present, markers will not match with the number of series, hence this patch to push a null value in points array
+ if (typeof pointArr === 'undefined') {
+ // nodelist to array
+ points.splice(p, 0, null);
+ }
+ }
+
+ if (pointArr && pointArr.length) {
+ var pcy = pointsArr[p][j][1];
+ var pcy2 = void 0;
+ points[p].setAttribute('cx', cx);
+
+ if (w.config.chart.type === 'rangeArea' && !w.globals.comboCharts) {
+ var rangeStartIndex = j + w.globals.series[p].length;
+ pcy2 = pointsArr[p][rangeStartIndex][1];
+ var pcyDiff = Math.abs(pcy - pcy2) / 2;
+ pcy = pcy - pcyDiff;
+ }
+
+ if (pcy !== null && !isNaN(pcy) && pcy < w.globals.gridHeight + hoverSize && pcy + hoverSize > 0) {
+ points[p] && points[p].setAttribute('r', hoverSize);
+ points[p] && points[p].setAttribute('cy', pcy);
+ } else {
+ points[p] && points[p].setAttribute('r', 0);
+ }
+ }
+ }
+ }
+
+ this.moveXCrosshairs(cx);
+
+ if (!ttCtx.fixedTooltip) {
+ this.moveTooltip(cx, cy || w.globals.gridHeight, hoverSize);
+ }
+ }
+ }, {
+ key: "moveStickyTooltipOverBars",
+ value: function moveStickyTooltipOverBars(j, capturedSeries) {
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+ var barLen = w.globals.columnSeries ? w.globals.columnSeries.length : w.globals.series.length;
+ var i = barLen >= 2 && barLen % 2 === 0 ? Math.floor(barLen / 2) : Math.floor(barLen / 2) + 1;
+
+ if (w.globals.isBarHorizontal) {
+ var series = new Series(this.ctx);
+ i = series.getActiveConfigSeriesIndex('desc') + 1;
+ }
+
+ var jBar = w.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(i, "'] path[j='").concat(j, "'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(i, "'] path[j='").concat(j, "'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(i, "'] path[j='").concat(j, "'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(i, "'] path[j='").concat(j, "']"));
+
+ if (!jBar && typeof capturedSeries === 'number') {
+ // Try with captured series index
+ jBar = w.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[data\\:realIndex='".concat(capturedSeries, "'] path[j='").concat(j, "'],\n .apexcharts-candlestick-series .apexcharts-series[data\\:realIndex='").concat(capturedSeries, "'] path[j='").concat(j, "'],\n .apexcharts-boxPlot-series .apexcharts-series[data\\:realIndex='").concat(capturedSeries, "'] path[j='").concat(j, "'],\n .apexcharts-rangebar-series .apexcharts-series[data\\:realIndex='").concat(capturedSeries, "'] path[j='").concat(j, "']"));
+ }
+
+ var bcx = jBar ? parseFloat(jBar.getAttribute('cx')) : 0;
+ var bcy = jBar ? parseFloat(jBar.getAttribute('cy')) : 0;
+ var bw = jBar ? parseFloat(jBar.getAttribute('barWidth')) : 0;
+ var elGrid = ttCtx.getElGrid();
+ var seriesBound = elGrid.getBoundingClientRect();
+ var isBoxOrCandle = jBar && (jBar.classList.contains('apexcharts-candlestick-area') || jBar.classList.contains('apexcharts-boxPlot-area'));
+
+ if (w.globals.isXNumeric) {
+ if (jBar && !isBoxOrCandle) {
+ bcx = bcx - (barLen % 2 !== 0 ? bw / 2 : 0);
+ }
+
+ if (jBar && // fixes apexcharts.js#2354
+ isBoxOrCandle && w.globals.comboCharts) {
+ bcx = bcx - bw / 2;
+ }
+ } else {
+ if (!w.globals.isBarHorizontal) {
+ bcx = ttCtx.xAxisTicksPositions[j - 1] + ttCtx.dataPointsDividedWidth / 2;
+
+ if (isNaN(bcx)) {
+ bcx = ttCtx.xAxisTicksPositions[j] - ttCtx.dataPointsDividedWidth / 2;
+ }
+ }
+ }
+
+ if (!w.globals.isBarHorizontal) {
+ if (w.config.tooltip.followCursor) {
+ bcy = ttCtx.e.clientY - seriesBound.top - ttCtx.tooltipRect.ttHeight / 2;
+ } else {
+ if (bcy + ttCtx.tooltipRect.ttHeight + 15 > w.globals.gridHeight) {
+ bcy = w.globals.gridHeight;
+ }
+ }
+ } else {
+ bcy = bcy - ttCtx.tooltipRect.ttHeight;
+ }
+
+ if (!w.globals.isBarHorizontal) {
+ this.moveXCrosshairs(bcx);
+ }
+
+ if (!ttCtx.fixedTooltip) {
+ this.moveTooltip(bcx, bcy || w.globals.gridHeight);
+ }
+ }
+ }]);
+
+ return Position;
+ }();
+
+ /**
+ * ApexCharts Tooltip.Marker Class to draw texts on the tooltip.
+ * This file deals with the markers that appear near tooltip in line/area charts.
+ * These markers helps the user to associate the data-points and the values
+ * that are shown in the tooltip
+ *
+ * @module Tooltip.Marker
+ **/
+
+ var Marker = /*#__PURE__*/function () {
+ function Marker(tooltipContext) {
+ _classCallCheck(this, Marker);
+
+ this.w = tooltipContext.w;
+ this.ttCtx = tooltipContext;
+ this.ctx = tooltipContext.ctx;
+ this.tooltipPosition = new Position(tooltipContext);
+ }
+
+ _createClass(Marker, [{
+ key: "drawDynamicPoints",
+ value: function drawDynamicPoints() {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var marker = new Markers(this.ctx);
+ var elsSeries = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series');
+ elsSeries = _toConsumableArray(elsSeries);
+
+ if (w.config.chart.stacked) {
+ elsSeries.sort(function (a, b) {
+ return parseFloat(a.getAttribute('data:realIndex')) - parseFloat(b.getAttribute('data:realIndex'));
+ });
+ }
+
+ for (var i = 0; i < elsSeries.length; i++) {
+ var pointsMain = elsSeries[i].querySelector(".apexcharts-series-markers-wrap");
+
+ if (pointsMain !== null) {
+ // it can be null as we have tooltips in donut/bar charts
+ var point = void 0;
+ var PointClasses = "apexcharts-marker w".concat((Math.random() + 1).toString(36).substring(4));
+
+ if ((w.config.chart.type === 'line' || w.config.chart.type === 'area') && !w.globals.comboCharts && !w.config.tooltip.intersect) {
+ PointClasses += ' no-pointer-events';
+ }
+
+ var elPointOptions = marker.getMarkerConfig({
+ cssClass: PointClasses,
+ seriesIndex: Number(pointsMain.getAttribute('data:realIndex')) // fixes apexcharts/apexcharts.js #1427
+
+ });
+ point = graphics.drawMarker(0, 0, elPointOptions);
+ point.node.setAttribute('default-marker-size', 0);
+ var elPointsG = document.createElementNS(w.globals.SVGNS, 'g');
+ elPointsG.classList.add('apexcharts-series-markers');
+ elPointsG.appendChild(point.node);
+ pointsMain.appendChild(elPointsG);
+ }
+ }
+ }
+ }, {
+ key: "enlargeCurrentPoint",
+ value: function enlargeCurrentPoint(rel, point) {
+ var x = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
+ var y = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;
+ var w = this.w;
+
+ if (w.config.chart.type !== 'bubble') {
+ this.newPointSize(rel, point);
+ }
+
+ var cx = point.getAttribute('cx');
+ var cy = point.getAttribute('cy');
+
+ if (x !== null && y !== null) {
+ cx = x;
+ cy = y;
+ }
+
+ this.tooltipPosition.moveXCrosshairs(cx);
+
+ if (!this.fixedTooltip) {
+ if (w.config.chart.type === 'radar') {
+ var elGrid = this.ttCtx.getElGrid();
+ var seriesBound = elGrid.getBoundingClientRect();
+ cx = this.ttCtx.e.clientX - seriesBound.left;
+ }
+
+ this.tooltipPosition.moveTooltip(cx, cy, w.config.markers.hover.size);
+ }
+ }
+ }, {
+ key: "enlargePoints",
+ value: function enlargePoints(j) {
+ var w = this.w;
+ var me = this;
+ var ttCtx = this.ttCtx;
+ var col = j;
+ var points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker');
+ var newSize = w.config.markers.hover.size;
+
+ for (var p = 0; p < points.length; p++) {
+ var rel = points[p].getAttribute('rel');
+ var index = points[p].getAttribute('index');
+
+ if (newSize === undefined) {
+ newSize = w.globals.markers.size[index] + w.config.markers.hover.sizeOffset;
+ }
+
+ if (col === parseInt(rel, 10)) {
+ me.newPointSize(col, points[p]);
+ var cx = points[p].getAttribute('cx');
+ var cy = points[p].getAttribute('cy');
+ me.tooltipPosition.moveXCrosshairs(cx);
+
+ if (!ttCtx.fixedTooltip) {
+ me.tooltipPosition.moveTooltip(cx, cy, newSize);
+ }
+ } else {
+ me.oldPointSize(points[p]);
+ }
+ }
+ }
+ }, {
+ key: "newPointSize",
+ value: function newPointSize(rel, point) {
+ var w = this.w;
+ var newSize = w.config.markers.hover.size;
+ var elPoint = rel === 0 ? point.parentNode.firstChild : point.parentNode.lastChild;
+
+ if (elPoint.getAttribute('default-marker-size') !== '0') {
+ var index = parseInt(elPoint.getAttribute('index'), 10);
+
+ if (newSize === undefined) {
+ newSize = w.globals.markers.size[index] + w.config.markers.hover.sizeOffset;
+ }
+
+ if (newSize < 0) newSize = 0;
+ elPoint.setAttribute('r', newSize);
+ }
+ }
+ }, {
+ key: "oldPointSize",
+ value: function oldPointSize(point) {
+ var size = parseFloat(point.getAttribute('default-marker-size'));
+ point.setAttribute('r', size);
+ }
+ }, {
+ key: "resetPointsSize",
+ value: function resetPointsSize() {
+ var w = this.w;
+ var points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker');
+
+ for (var p = 0; p < points.length; p++) {
+ var size = parseFloat(points[p].getAttribute('default-marker-size'));
+
+ if (Utils$1.isNumber(size) && size >= 0) {
+ points[p].setAttribute('r', size);
+ } else {
+ points[p].setAttribute('r', 0);
+ }
+ }
+ }
+ }]);
+
+ return Marker;
+ }();
+
+ /**
+ * ApexCharts Tooltip.Intersect Class.
+ * This file deals with functions related to intersecting tooltips
+ * (tooltips that appear when user hovers directly over a data-point whether)
+ *
+ * @module Tooltip.Intersect
+ **/
+
+ var Intersect = /*#__PURE__*/function () {
+ function Intersect(tooltipContext) {
+ _classCallCheck(this, Intersect);
+
+ this.w = tooltipContext.w;
+ var w = this.w;
+ this.ttCtx = tooltipContext;
+ this.isVerticalGroupedRangeBar = !w.globals.isBarHorizontal && w.config.chart.type === 'rangeBar' && w.config.plotOptions.bar.rangeBarGroupRows;
+ } // a helper function to get an element's attribute value
+
+
+ _createClass(Intersect, [{
+ key: "getAttr",
+ value: function getAttr(e, attr) {
+ return parseFloat(e.target.getAttribute(attr));
+ } // handle tooltip for heatmaps and treemaps
+
+ }, {
+ key: "handleHeatTreeTooltip",
+ value: function handleHeatTreeTooltip(_ref) {
+ var e = _ref.e,
+ opt = _ref.opt,
+ x = _ref.x,
+ y = _ref.y,
+ type = _ref.type;
+ var ttCtx = this.ttCtx;
+ var w = this.w;
+
+ if (e.target.classList.contains("apexcharts-".concat(type, "-rect"))) {
+ var i = this.getAttr(e, 'i');
+ var j = this.getAttr(e, 'j');
+ var cx = this.getAttr(e, 'cx');
+ var cy = this.getAttr(e, 'cy');
+ var width = this.getAttr(e, 'width');
+ var height = this.getAttr(e, 'height');
+ ttCtx.tooltipLabels.drawSeriesTexts({
+ ttItems: opt.ttItems,
+ i: i,
+ j: j,
+ shared: false,
+ e: e
+ });
+ w.globals.capturedSeriesIndex = i;
+ w.globals.capturedDataPointIndex = j;
+ x = cx + ttCtx.tooltipRect.ttWidth / 2 + width;
+ y = cy + ttCtx.tooltipRect.ttHeight / 2 - height / 2;
+ ttCtx.tooltipPosition.moveXCrosshairs(cx + width / 2);
+
+ if (x > w.globals.gridWidth / 2) {
+ x = cx - ttCtx.tooltipRect.ttWidth / 2 + width;
+ }
+
+ if (ttCtx.w.config.tooltip.followCursor) {
+ var seriesBound = w.globals.dom.elWrap.getBoundingClientRect();
+ x = w.globals.clientX - seriesBound.left - (x > w.globals.gridWidth / 2 ? ttCtx.tooltipRect.ttWidth : 0);
+ y = w.globals.clientY - seriesBound.top - (y > w.globals.gridHeight / 2 ? ttCtx.tooltipRect.ttHeight : 0);
+ }
+ }
+
+ return {
+ x: x,
+ y: y
+ };
+ }
+ /**
+ * handle tooltips for line/area/scatter charts where tooltip.intersect is true
+ * when user hovers over the marker directly, this function is executed
+ */
+
+ }, {
+ key: "handleMarkerTooltip",
+ value: function handleMarkerTooltip(_ref2) {
+ var e = _ref2.e,
+ opt = _ref2.opt,
+ x = _ref2.x,
+ y = _ref2.y;
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+ var i;
+ var j;
+
+ if (e.target.classList.contains('apexcharts-marker')) {
+ var cx = parseInt(opt.paths.getAttribute('cx'), 10);
+ var cy = parseInt(opt.paths.getAttribute('cy'), 10);
+ var val = parseFloat(opt.paths.getAttribute('val'));
+ j = parseInt(opt.paths.getAttribute('rel'), 10);
+ i = parseInt(opt.paths.parentNode.parentNode.parentNode.getAttribute('rel'), 10) - 1;
+
+ if (ttCtx.intersect) {
+ var el = Utils$1.findAncestor(opt.paths, 'apexcharts-series');
+
+ if (el) {
+ i = parseInt(el.getAttribute('data:realIndex'), 10);
+ }
+ }
+
+ ttCtx.tooltipLabels.drawSeriesTexts({
+ ttItems: opt.ttItems,
+ i: i,
+ j: j,
+ shared: ttCtx.showOnIntersect ? false : w.config.tooltip.shared,
+ e: e
+ });
+
+ if (e.type === 'mouseup') {
+ ttCtx.markerClick(e, i, j);
+ }
+
+ w.globals.capturedSeriesIndex = i;
+ w.globals.capturedDataPointIndex = j;
+ x = cx;
+ y = cy + w.globals.translateY - ttCtx.tooltipRect.ttHeight * 1.4;
+
+ if (ttCtx.w.config.tooltip.followCursor) {
+ var elGrid = ttCtx.getElGrid();
+ var seriesBound = elGrid.getBoundingClientRect();
+ y = ttCtx.e.clientY + w.globals.translateY - seriesBound.top;
+ }
+
+ if (val < 0) {
+ y = cy;
+ }
+
+ ttCtx.marker.enlargeCurrentPoint(j, opt.paths, x, y);
+ }
+
+ return {
+ x: x,
+ y: y
+ };
+ }
+ /**
+ * handle tooltips for bar/column charts
+ */
+
+ }, {
+ key: "handleBarTooltip",
+ value: function handleBarTooltip(_ref3) {
+ var e = _ref3.e,
+ opt = _ref3.opt;
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+ var tooltipEl = ttCtx.getElTooltip();
+ var bx = 0;
+ var x = 0;
+ var y = 0;
+ var i = 0;
+ var strokeWidth;
+ var barXY = this.getBarTooltipXY({
+ e: e,
+ opt: opt
+ });
+ i = barXY.i;
+ var barHeight = barXY.barHeight;
+ var j = barXY.j;
+ w.globals.capturedSeriesIndex = i;
+ w.globals.capturedDataPointIndex = j;
+
+ if (w.globals.isBarHorizontal && ttCtx.tooltipUtil.hasBars() || !w.config.tooltip.shared) {
+ x = barXY.x;
+ y = barXY.y;
+ strokeWidth = Array.isArray(w.config.stroke.width) ? w.config.stroke.width[i] : w.config.stroke.width;
+ bx = x;
+ } else {
+ if (!w.globals.comboCharts && !w.config.tooltip.shared) {
+ // todo: re-check this condition as it's always 0
+ bx = bx / 2;
+ }
+ } // y is NaN, make it touch the bottom of grid area
+
+
+ if (isNaN(y)) {
+ y = w.globals.svgHeight - ttCtx.tooltipRect.ttHeight;
+ }
+
+ var seriesIndex = parseInt(opt.paths.parentNode.getAttribute('data:realIndex'), 10);
+ var isReversed = w.globals.isMultipleYAxis ? w.config.yaxis[seriesIndex] && w.config.yaxis[seriesIndex].reversed : w.config.yaxis[0].reversed;
+
+ if (x + ttCtx.tooltipRect.ttWidth > w.globals.gridWidth && !isReversed) {
+ x = x - ttCtx.tooltipRect.ttWidth;
+ } else if (x < 0) {
+ x = 0;
+ }
+
+ if (ttCtx.w.config.tooltip.followCursor) {
+ var elGrid = ttCtx.getElGrid();
+ var seriesBound = elGrid.getBoundingClientRect();
+ y = ttCtx.e.clientY - seriesBound.top;
+ } // if tooltip is still null, querySelector
+
+
+ if (ttCtx.tooltip === null) {
+ ttCtx.tooltip = w.globals.dom.baseEl.querySelector('.apexcharts-tooltip');
+ }
+
+ if (!w.config.tooltip.shared) {
+ if (w.globals.comboBarCount > 0) {
+ ttCtx.tooltipPosition.moveXCrosshairs(bx + strokeWidth / 2);
+ } else {
+ ttCtx.tooltipPosition.moveXCrosshairs(bx);
+ }
+ } // move tooltip here
+
+
+ if (!ttCtx.fixedTooltip && (!w.config.tooltip.shared || w.globals.isBarHorizontal && ttCtx.tooltipUtil.hasBars())) {
+ if (isReversed) {
+ x = x - ttCtx.tooltipRect.ttWidth;
+
+ if (x < 0) {
+ x = 0;
+ }
+ }
+
+ if (isReversed && !(w.globals.isBarHorizontal && ttCtx.tooltipUtil.hasBars())) {
+ y = y + barHeight - (w.globals.series[i][j] < 0 ? barHeight : 0) * 2;
+ }
+
+ y = y + w.globals.translateY - ttCtx.tooltipRect.ttHeight / 2;
+ tooltipEl.style.left = x + w.globals.translateX + 'px';
+ tooltipEl.style.top = y + 'px';
+ }
+ }
+ }, {
+ key: "getBarTooltipXY",
+ value: function getBarTooltipXY(_ref4) {
+ var _this = this;
+
+ var e = _ref4.e,
+ opt = _ref4.opt;
+ var w = this.w;
+ var j = null;
+ var ttCtx = this.ttCtx;
+ var i = 0;
+ var x = 0;
+ var y = 0;
+ var barWidth = 0;
+ var barHeight = 0;
+ var cl = e.target.classList;
+
+ if (cl.contains('apexcharts-bar-area') || cl.contains('apexcharts-candlestick-area') || cl.contains('apexcharts-boxPlot-area') || cl.contains('apexcharts-rangebar-area')) {
+ var bar = e.target;
+ var barRect = bar.getBoundingClientRect();
+ var seriesBound = opt.elGrid.getBoundingClientRect();
+ var bh = barRect.height;
+ barHeight = barRect.height;
+ var bw = barRect.width;
+ var cx = parseInt(bar.getAttribute('cx'), 10);
+ var cy = parseInt(bar.getAttribute('cy'), 10);
+ barWidth = parseFloat(bar.getAttribute('barWidth'));
+ var clientX = e.type === 'touchmove' ? e.touches[0].clientX : e.clientX;
+ j = parseInt(bar.getAttribute('j'), 10);
+ i = parseInt(bar.parentNode.getAttribute('rel'), 10) - 1;
+ var y1 = bar.getAttribute('data-range-y1');
+ var y2 = bar.getAttribute('data-range-y2');
+
+ if (w.globals.comboCharts) {
+ i = parseInt(bar.parentNode.getAttribute('data:realIndex'), 10);
+ } // if (w.config.tooltip.shared) {
+ // this check not needed at the moment
+ // const yDivisor = w.globals.gridHeight / (w.globals.series.length)
+ // const hoverY = ttCtx.clientY - ttCtx.seriesBound.top
+ // j = Math.ceil(hoverY / yDivisor)
+ // }
+
+
+ var handleXForColumns = function handleXForColumns(x) {
+ if (w.globals.isXNumeric) {
+ x = cx - bw / 2;
+ } else {
+ if (_this.isVerticalGroupedRangeBar) {
+ x = cx + bw / 2;
+ } else {
+ x = cx - ttCtx.dataPointsDividedWidth + bw / 2;
+ }
+ }
+
+ return x;
+ };
+
+ var handleYForBars = function handleYForBars() {
+ return cy - ttCtx.dataPointsDividedHeight + bh / 2 - ttCtx.tooltipRect.ttHeight / 2;
+ };
+
+ ttCtx.tooltipLabels.drawSeriesTexts({
+ ttItems: opt.ttItems,
+ i: i,
+ j: j,
+ y1: y1 ? parseInt(y1, 10) : null,
+ y2: y2 ? parseInt(y2, 10) : null,
+ shared: ttCtx.showOnIntersect ? false : w.config.tooltip.shared,
+ e: e
+ });
+
+ if (w.config.tooltip.followCursor) {
+ if (w.globals.isBarHorizontal) {
+ x = clientX - seriesBound.left + 15;
+ y = handleYForBars();
+ } else {
+ x = handleXForColumns(x);
+ y = e.clientY - seriesBound.top - ttCtx.tooltipRect.ttHeight / 2 - 15;
+ }
+ } else {
+ if (w.globals.isBarHorizontal) {
+ x = cx;
+
+ if (x < ttCtx.xyRatios.baseLineInvertedY) {
+ x = cx - ttCtx.tooltipRect.ttWidth;
+ }
+
+ y = handleYForBars();
+ } else {
+ x = handleXForColumns(x);
+ y = cy; // - ttCtx.tooltipRect.ttHeight / 2 + 10
+ }
+ }
+ }
+
+ return {
+ x: x,
+ y: y,
+ barHeight: barHeight,
+ barWidth: barWidth,
+ i: i,
+ j: j
+ };
+ }
+ }]);
+
+ return Intersect;
+ }();
+
+ /**
+ * ApexCharts Tooltip.AxesTooltip Class.
+ * This file deals with the x-axis and y-axis tooltips.
+ *
+ * @module Tooltip.AxesTooltip
+ **/
+ var AxesTooltip = /*#__PURE__*/function () {
+ function AxesTooltip(tooltipContext) {
+ _classCallCheck(this, AxesTooltip);
+
+ this.w = tooltipContext.w;
+ this.ttCtx = tooltipContext;
+ }
+ /**
+ * This method adds the secondary tooltip which appears below x axis
+ * @memberof Tooltip
+ **/
+
+
+ _createClass(AxesTooltip, [{
+ key: "drawXaxisTooltip",
+ value: function drawXaxisTooltip() {
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+ var isBottom = w.config.xaxis.position === 'bottom';
+ ttCtx.xaxisOffY = isBottom ? w.globals.gridHeight + 1 : -w.globals.xAxisHeight - w.config.xaxis.axisTicks.height + 3;
+ var tooltipCssClass = isBottom ? 'apexcharts-xaxistooltip apexcharts-xaxistooltip-bottom' : 'apexcharts-xaxistooltip apexcharts-xaxistooltip-top';
+ var renderTo = w.globals.dom.elWrap;
+
+ if (ttCtx.isXAxisTooltipEnabled) {
+ var xaxisTooltip = w.globals.dom.baseEl.querySelector('.apexcharts-xaxistooltip');
+
+ if (xaxisTooltip === null) {
+ ttCtx.xaxisTooltip = document.createElement('div');
+ ttCtx.xaxisTooltip.setAttribute('class', tooltipCssClass + ' apexcharts-theme-' + w.config.tooltip.theme);
+ renderTo.appendChild(ttCtx.xaxisTooltip);
+ ttCtx.xaxisTooltipText = document.createElement('div');
+ ttCtx.xaxisTooltipText.classList.add('apexcharts-xaxistooltip-text');
+ ttCtx.xaxisTooltipText.style.fontFamily = w.config.xaxis.tooltip.style.fontFamily || w.config.chart.fontFamily;
+ ttCtx.xaxisTooltipText.style.fontSize = w.config.xaxis.tooltip.style.fontSize;
+ ttCtx.xaxisTooltip.appendChild(ttCtx.xaxisTooltipText);
+ }
+ }
+ }
+ /**
+ * This method adds the secondary tooltip which appears below x axis
+ * @memberof Tooltip
+ **/
+
+ }, {
+ key: "drawYaxisTooltip",
+ value: function drawYaxisTooltip() {
+ var w = this.w;
+ var ttCtx = this.ttCtx;
+
+ for (var i = 0; i < w.config.yaxis.length; i++) {
+ var isRight = w.config.yaxis[i].opposite || w.config.yaxis[i].crosshairs.opposite;
+ ttCtx.yaxisOffX = isRight ? w.globals.gridWidth + 1 : 1;
+ var tooltipCssClass = isRight ? "apexcharts-yaxistooltip apexcharts-yaxistooltip-".concat(i, " apexcharts-yaxistooltip-right") : "apexcharts-yaxistooltip apexcharts-yaxistooltip-".concat(i, " apexcharts-yaxistooltip-left");
+ var renderTo = w.globals.dom.elWrap;
+ var yaxisTooltip = w.globals.dom.baseEl.querySelector(".apexcharts-yaxistooltip apexcharts-yaxistooltip-".concat(i));
+
+ if (yaxisTooltip === null) {
+ ttCtx.yaxisTooltip = document.createElement('div');
+ ttCtx.yaxisTooltip.setAttribute('class', tooltipCssClass + ' apexcharts-theme-' + w.config.tooltip.theme);
+ renderTo.appendChild(ttCtx.yaxisTooltip);
+ if (i === 0) ttCtx.yaxisTooltipText = [];
+ ttCtx.yaxisTooltipText[i] = document.createElement('div');
+ ttCtx.yaxisTooltipText[i].classList.add('apexcharts-yaxistooltip-text');
+ ttCtx.yaxisTooltip.appendChild(ttCtx.yaxisTooltipText[i]);
+ }
+ }
+ }
+ /**
+ * @memberof Tooltip
+ **/
+
+ }, {
+ key: "setXCrosshairWidth",
+ value: function setXCrosshairWidth() {
+ var w = this.w;
+ var ttCtx = this.ttCtx; // set xcrosshairs width
+
+ var xcrosshairs = ttCtx.getElXCrosshairs();
+ ttCtx.xcrosshairsWidth = parseInt(w.config.xaxis.crosshairs.width, 10);
+
+ if (!w.globals.comboCharts) {
+ if (w.config.xaxis.crosshairs.width === 'tickWidth') {
+ var count = w.globals.labels.length;
+ ttCtx.xcrosshairsWidth = w.globals.gridWidth / count;
+ } else if (w.config.xaxis.crosshairs.width === 'barWidth') {
+ var bar = w.globals.dom.baseEl.querySelector('.apexcharts-bar-area');
+
+ if (bar !== null) {
+ var barWidth = parseFloat(bar.getAttribute('barWidth'));
+ ttCtx.xcrosshairsWidth = barWidth;
+ } else {
+ ttCtx.xcrosshairsWidth = 1;
+ }
+ }
+ } else {
+ var _bar = w.globals.dom.baseEl.querySelector('.apexcharts-bar-area');
+
+ if (_bar !== null && w.config.xaxis.crosshairs.width === 'barWidth') {
+ var _barWidth = parseFloat(_bar.getAttribute('barWidth'));
+
+ ttCtx.xcrosshairsWidth = _barWidth;
+ } else {
+ if (w.config.xaxis.crosshairs.width === 'tickWidth') {
+ var _count = w.globals.labels.length;
+ ttCtx.xcrosshairsWidth = w.globals.gridWidth / _count;
+ }
+ }
+ }
+
+ if (w.globals.isBarHorizontal) {
+ ttCtx.xcrosshairsWidth = 0;
+ }
+
+ if (xcrosshairs !== null && ttCtx.xcrosshairsWidth > 0) {
+ xcrosshairs.setAttribute('width', ttCtx.xcrosshairsWidth);
+ }
+ }
+ }, {
+ key: "handleYCrosshair",
+ value: function handleYCrosshair() {
+ var w = this.w;
+ var ttCtx = this.ttCtx; // set ycrosshairs height
+
+ ttCtx.ycrosshairs = w.globals.dom.baseEl.querySelector('.apexcharts-ycrosshairs');
+ ttCtx.ycrosshairsHidden = w.globals.dom.baseEl.querySelector('.apexcharts-ycrosshairs-hidden');
+ }
+ }, {
+ key: "drawYaxisTooltipText",
+ value: function drawYaxisTooltipText(index, clientY, xyRatios) {
+ var ttCtx = this.ttCtx;
+ var w = this.w;
+ var lbFormatter = w.globals.yLabelFormatters[index];
+
+ if (ttCtx.yaxisTooltips[index]) {
+ var elGrid = ttCtx.getElGrid();
+ var seriesBound = elGrid.getBoundingClientRect(); // We can use the index of any series referenced by the Yaxis
+ // because they will all return the same value.
+
+ var seriesIndex = w.globals.seriesYAxisMap[anno.yAxisIndex][0];
+ var hoverY = (clientY - seriesBound.top) * xyRatios.yRatio[seriesIndex];
+ var height = w.globals.maxYArr[seriesIndex] - w.globals.minYArr[seriesIndex];
+ var val = w.globals.minYArr[seriesIndex] + (height - hoverY);
+ ttCtx.tooltipPosition.moveYCrosshairs(clientY - seriesBound.top);
+ ttCtx.yaxisTooltipText[index].innerHTML = lbFormatter(val);
+ ttCtx.tooltipPosition.moveYAxisTooltip(index);
+ }
+ }
+ }]);
+
+ return AxesTooltip;
+ }();
+
+ /**
+ * ApexCharts Core Tooltip Class to handle the tooltip generation.
+ *
+ * @module Tooltip
+ **/
+
+ var Tooltip = /*#__PURE__*/function () {
+ function Tooltip(ctx) {
+ _classCallCheck(this, Tooltip);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ var w = this.w;
+ this.tConfig = w.config.tooltip;
+ this.tooltipUtil = new Utils(this);
+ this.tooltipLabels = new Labels(this);
+ this.tooltipPosition = new Position(this);
+ this.marker = new Marker(this);
+ this.intersect = new Intersect(this);
+ this.axesTooltip = new AxesTooltip(this);
+ this.showOnIntersect = this.tConfig.intersect;
+ this.showTooltipTitle = this.tConfig.x.show;
+ this.fixedTooltip = this.tConfig.fixed.enabled;
+ this.xaxisTooltip = null;
+ this.yaxisTTEls = null;
+ this.isBarShared = !w.globals.isBarHorizontal && this.tConfig.shared;
+ this.lastHoverTime = Date.now();
+ }
+
+ _createClass(Tooltip, [{
+ key: "getElTooltip",
+ value: function getElTooltip(ctx) {
+ if (!ctx) ctx = this;
+ if (!ctx.w.globals.dom.baseEl) return null;
+ return ctx.w.globals.dom.baseEl.querySelector('.apexcharts-tooltip');
+ }
+ }, {
+ key: "getElXCrosshairs",
+ value: function getElXCrosshairs() {
+ return this.w.globals.dom.baseEl.querySelector('.apexcharts-xcrosshairs');
+ }
+ }, {
+ key: "getElGrid",
+ value: function getElGrid() {
+ return this.w.globals.dom.baseEl.querySelector('.apexcharts-grid');
+ }
+ }, {
+ key: "drawTooltip",
+ value: function drawTooltip(xyRatios) {
+ var w = this.w;
+ this.xyRatios = xyRatios;
+ this.isXAxisTooltipEnabled = w.config.xaxis.tooltip.enabled && w.globals.axisCharts;
+ this.yaxisTooltips = w.config.yaxis.map(function (y, i) {
+ return y.show && y.tooltip.enabled && w.globals.axisCharts ? true : false;
+ });
+ this.allTooltipSeriesGroups = [];
+
+ if (!w.globals.axisCharts) {
+ this.showTooltipTitle = false;
+ }
+
+ var tooltipEl = document.createElement('div');
+ tooltipEl.classList.add('apexcharts-tooltip');
+
+ if (w.config.tooltip.cssClass) {
+ tooltipEl.classList.add(w.config.tooltip.cssClass);
+ }
+
+ tooltipEl.classList.add("apexcharts-theme-".concat(this.tConfig.theme));
+ w.globals.dom.elWrap.appendChild(tooltipEl);
+
+ if (w.globals.axisCharts) {
+ this.axesTooltip.drawXaxisTooltip();
+ this.axesTooltip.drawYaxisTooltip();
+ this.axesTooltip.setXCrosshairWidth();
+ this.axesTooltip.handleYCrosshair();
+ var xAxis = new XAxis(this.ctx);
+ this.xAxisTicksPositions = xAxis.getXAxisTicksPositions();
+ } // we forcefully set intersect true for these conditions
+
+
+ if ((w.globals.comboCharts || this.tConfig.intersect || w.config.chart.type === 'rangeBar') && !this.tConfig.shared) {
+ this.showOnIntersect = true;
+ }
+
+ if (w.config.markers.size === 0 || w.globals.markers.largestSize === 0) {
+ // when user don't want to show points all the time, but only on when hovering on series
+ this.marker.drawDynamicPoints(this);
+ } // no visible series, exit
+
+
+ if (w.globals.collapsedSeries.length === w.globals.series.length) return;
+ this.dataPointsDividedHeight = w.globals.gridHeight / w.globals.dataPoints;
+ this.dataPointsDividedWidth = w.globals.gridWidth / w.globals.dataPoints;
+
+ if (this.showTooltipTitle) {
+ this.tooltipTitle = document.createElement('div');
+ this.tooltipTitle.classList.add('apexcharts-tooltip-title');
+ this.tooltipTitle.style.fontFamily = this.tConfig.style.fontFamily || w.config.chart.fontFamily;
+ this.tooltipTitle.style.fontSize = this.tConfig.style.fontSize;
+ tooltipEl.appendChild(this.tooltipTitle);
+ }
+
+ var ttItemsCnt = w.globals.series.length; // whether shared or not, default is shared
+
+ if ((w.globals.xyCharts || w.globals.comboCharts) && this.tConfig.shared) {
+ if (!this.showOnIntersect) {
+ ttItemsCnt = w.globals.series.length;
+ } else {
+ ttItemsCnt = 1;
+ }
+ }
+
+ this.legendLabels = w.globals.dom.baseEl.querySelectorAll('.apexcharts-legend-text');
+ this.ttItems = this.createTTElements(ttItemsCnt);
+ this.addSVGEvents();
+ }
+ }, {
+ key: "createTTElements",
+ value: function createTTElements(ttItemsCnt) {
+ var _this = this;
+
+ var w = this.w;
+ var ttItems = [];
+ var tooltipEl = this.getElTooltip();
+
+ var _loop = function _loop(i) {
+ var gTxt = document.createElement('div');
+ gTxt.classList.add('apexcharts-tooltip-series-group');
+ gTxt.style.order = w.config.tooltip.inverseOrder ? ttItemsCnt - i : i + 1;
+
+ if (_this.tConfig.shared && _this.tConfig.enabledOnSeries && Array.isArray(_this.tConfig.enabledOnSeries)) {
+ if (_this.tConfig.enabledOnSeries.indexOf(i) < 0) {
+ gTxt.classList.add('apexcharts-tooltip-series-group-hidden');
+ }
+ }
+
+ var point = document.createElement('span');
+ point.classList.add('apexcharts-tooltip-marker');
+ point.style.backgroundColor = w.globals.colors[i];
+ gTxt.appendChild(point);
+ var gYZ = document.createElement('div');
+ gYZ.classList.add('apexcharts-tooltip-text');
+ gYZ.style.fontFamily = _this.tConfig.style.fontFamily || w.config.chart.fontFamily;
+ gYZ.style.fontSize = _this.tConfig.style.fontSize;
+ ['y', 'goals', 'z'].forEach(function (g) {
+ var gValText = document.createElement('div');
+ gValText.classList.add("apexcharts-tooltip-".concat(g, "-group"));
+ var txtLabel = document.createElement('span');
+ txtLabel.classList.add("apexcharts-tooltip-text-".concat(g, "-label"));
+ gValText.appendChild(txtLabel);
+ var txtValue = document.createElement('span');
+ txtValue.classList.add("apexcharts-tooltip-text-".concat(g, "-value"));
+ gValText.appendChild(txtValue);
+ gYZ.appendChild(gValText);
+ });
+ gTxt.appendChild(gYZ);
+ tooltipEl.appendChild(gTxt);
+ ttItems.push(gTxt);
+ };
+
+ for (var i = 0; i < ttItemsCnt; i++) {
+ _loop(i);
+ }
+
+ return ttItems;
+ }
+ }, {
+ key: "addSVGEvents",
+ value: function addSVGEvents() {
+ var w = this.w;
+ var type = w.config.chart.type;
+ var tooltipEl = this.getElTooltip();
+ var commonBar = !!(type === 'bar' || type === 'candlestick' || type === 'boxPlot' || type === 'rangeBar');
+ var chartWithmarkers = type === 'area' || type === 'line' || type === 'scatter' || type === 'bubble' || type === 'radar';
+ var hoverArea = w.globals.dom.Paper.node;
+ var elGrid = this.getElGrid();
+
+ if (elGrid) {
+ this.seriesBound = elGrid.getBoundingClientRect();
+ }
+
+ var tooltipY = [];
+ var tooltipX = [];
+ var seriesHoverParams = {
+ hoverArea: hoverArea,
+ elGrid: elGrid,
+ tooltipEl: tooltipEl,
+ tooltipY: tooltipY,
+ tooltipX: tooltipX,
+ ttItems: this.ttItems
+ };
+ var points;
+
+ if (w.globals.axisCharts) {
+ if (chartWithmarkers) {
+ points = w.globals.dom.baseEl.querySelectorAll(".apexcharts-series[data\\:longestSeries='true'] .apexcharts-marker");
+ } else if (commonBar) {
+ points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series .apexcharts-bar-area, .apexcharts-series .apexcharts-candlestick-area, .apexcharts-series .apexcharts-boxPlot-area, .apexcharts-series .apexcharts-rangebar-area');
+ } else if (type === 'heatmap' || type === 'treemap') {
+ points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series .apexcharts-heatmap, .apexcharts-series .apexcharts-treemap');
+ }
+
+ if (points && points.length) {
+ for (var p = 0; p < points.length; p++) {
+ tooltipY.push(points[p].getAttribute('cy'));
+ tooltipX.push(points[p].getAttribute('cx'));
+ }
+ }
+ }
+
+ var validSharedChartTypes = w.globals.xyCharts && !this.showOnIntersect || w.globals.comboCharts && !this.showOnIntersect || commonBar && this.tooltipUtil.hasBars() && this.tConfig.shared;
+
+ if (validSharedChartTypes) {
+ this.addPathsEventListeners([hoverArea], seriesHoverParams);
+ } else if (commonBar && !w.globals.comboCharts || chartWithmarkers && this.showOnIntersect) {
+ this.addDatapointEventsListeners(seriesHoverParams);
+ } else if (!w.globals.axisCharts || type === 'heatmap' || type === 'treemap') {
+ var seriesAll = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series');
+ this.addPathsEventListeners(seriesAll, seriesHoverParams);
+ }
+
+ if (this.showOnIntersect) {
+ var lineAreaPoints = w.globals.dom.baseEl.querySelectorAll('.apexcharts-line-series .apexcharts-marker, .apexcharts-area-series .apexcharts-marker');
+
+ if (lineAreaPoints.length > 0) {
+ // if we find any lineSeries, addEventListeners for them
+ this.addPathsEventListeners(lineAreaPoints, seriesHoverParams);
+ } // combo charts may have bars, so add event listeners here too
+
+
+ if (this.tooltipUtil.hasBars() && !this.tConfig.shared) {
+ this.addDatapointEventsListeners(seriesHoverParams);
+ }
+ }
+ }
+ }, {
+ key: "drawFixedTooltipRect",
+ value: function drawFixedTooltipRect() {
+ var w = this.w;
+ var tooltipEl = this.getElTooltip();
+ var tooltipRect = tooltipEl.getBoundingClientRect();
+ var ttWidth = tooltipRect.width + 10;
+ var ttHeight = tooltipRect.height + 10;
+ var x = this.tConfig.fixed.offsetX;
+ var y = this.tConfig.fixed.offsetY;
+ var fixed = this.tConfig.fixed.position.toLowerCase();
+
+ if (fixed.indexOf('right') > -1) {
+ x = x + w.globals.svgWidth - ttWidth + 10;
+ }
+
+ if (fixed.indexOf('bottom') > -1) {
+ y = y + w.globals.svgHeight - ttHeight - 10;
+ }
+
+ tooltipEl.style.left = x + 'px';
+ tooltipEl.style.top = y + 'px';
+ return {
+ x: x,
+ y: y,
+ ttWidth: ttWidth,
+ ttHeight: ttHeight
+ };
+ }
+ }, {
+ key: "addDatapointEventsListeners",
+ value: function addDatapointEventsListeners(seriesHoverParams) {
+ var w = this.w;
+ var points = w.globals.dom.baseEl.querySelectorAll('.apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area');
+ this.addPathsEventListeners(points, seriesHoverParams);
+ }
+ }, {
+ key: "addPathsEventListeners",
+ value: function addPathsEventListeners(paths, opts) {
+ var self = this;
+
+ var _loop2 = function _loop2(p) {
+ var extendedOpts = {
+ paths: paths[p],
+ tooltipEl: opts.tooltipEl,
+ tooltipY: opts.tooltipY,
+ tooltipX: opts.tooltipX,
+ elGrid: opts.elGrid,
+ hoverArea: opts.hoverArea,
+ ttItems: opts.ttItems
+ };
+ var events = ['mousemove', 'mouseup', 'touchmove', 'mouseout', 'touchend'];
+ events.map(function (ev) {
+ return paths[p].addEventListener(ev, self.onSeriesHover.bind(self, extendedOpts), {
+ capture: false,
+ passive: true
+ });
+ });
+ };
+
+ for (var p = 0; p < paths.length; p++) {
+ _loop2(p);
+ }
+ }
+ /*
+ ** Check to see if the tooltips should be updated based on a mouse / touch event
+ */
+
+ }, {
+ key: "onSeriesHover",
+ value: function onSeriesHover(opt, e) {
+ var _this2 = this;
+
+ // If a user is moving their mouse quickly, don't bother updating the tooltip every single frame
+ var targetDelay = 100;
+ var timeSinceLastUpdate = Date.now() - this.lastHoverTime;
+
+ if (timeSinceLastUpdate >= targetDelay) {
+ // The tooltip was last updated over 100ms ago - redraw it even if the user is still moving their
+ // mouse so they get some feedback that their moves are being registered
+ this.seriesHover(opt, e);
+ } else {
+ // The tooltip was last updated less than 100ms ago
+ // Cancel any other delayed draw, so we don't show stale data
+ clearTimeout(this.seriesHoverTimeout); // Schedule the next draw so that it happens about 100ms after the last update
+
+ this.seriesHoverTimeout = setTimeout(function () {
+ _this2.seriesHover(opt, e);
+ }, targetDelay - timeSinceLastUpdate);
+ }
+ }
+ /*
+ ** The actual series hover function
+ */
+
+ }, {
+ key: "seriesHover",
+ value: function seriesHover(opt, e) {
+ var _this3 = this;
+
+ this.lastHoverTime = Date.now();
+ var chartGroups = [];
+ var w = this.w; // if user has more than one charts in group, we need to sync
+
+ if (w.config.chart.group) {
+ chartGroups = this.ctx.getGroupedCharts();
+ }
+
+ if (w.globals.axisCharts && (w.globals.minX === -Infinity && w.globals.maxX === Infinity || w.globals.dataPoints === 0)) {
+ return;
+ }
+
+ if (chartGroups.length) {
+ chartGroups.forEach(function (ch) {
+ var tooltipEl = _this3.getElTooltip(ch);
+
+ var newOpts = {
+ paths: opt.paths,
+ tooltipEl: tooltipEl,
+ tooltipY: opt.tooltipY,
+ tooltipX: opt.tooltipX,
+ elGrid: opt.elGrid,
+ hoverArea: opt.hoverArea,
+ ttItems: ch.w.globals.tooltip.ttItems
+ }; // all the charts should have the same minX and maxX (same xaxis) for multiple tooltips to work correctly
+
+ if (ch.w.globals.minX === _this3.w.globals.minX && ch.w.globals.maxX === _this3.w.globals.maxX) {
+ ch.w.globals.tooltip.seriesHoverByContext({
+ chartCtx: ch,
+ ttCtx: ch.w.globals.tooltip,
+ opt: newOpts,
+ e: e
+ });
+ }
+ });
+ } else {
+ this.seriesHoverByContext({
+ chartCtx: this.ctx,
+ ttCtx: this.w.globals.tooltip,
+ opt: opt,
+ e: e
+ });
+ }
+ }
+ }, {
+ key: "seriesHoverByContext",
+ value: function seriesHoverByContext(_ref) {
+ var chartCtx = _ref.chartCtx,
+ ttCtx = _ref.ttCtx,
+ opt = _ref.opt,
+ e = _ref.e;
+ var w = chartCtx.w;
+ var tooltipEl = this.getElTooltip();
+ if (!tooltipEl) return; // tooltipRect is calculated on every mousemove, because the text is dynamic
+
+ ttCtx.tooltipRect = {
+ x: 0,
+ y: 0,
+ ttWidth: tooltipEl.getBoundingClientRect().width,
+ ttHeight: tooltipEl.getBoundingClientRect().height
+ };
+ ttCtx.e = e; // highlight the current hovered bars
+
+ if (ttCtx.tooltipUtil.hasBars() && !w.globals.comboCharts && !ttCtx.isBarShared) {
+ if (this.tConfig.onDatasetHover.highlightDataSeries) {
+ var series = new Series(chartCtx);
+ series.toggleSeriesOnHover(e, e.target.parentNode);
+ }
+ }
+
+ if (ttCtx.fixedTooltip) {
+ ttCtx.drawFixedTooltipRect();
+ }
+
+ if (w.globals.axisCharts) {
+ ttCtx.axisChartsTooltips({
+ e: e,
+ opt: opt,
+ tooltipRect: ttCtx.tooltipRect
+ });
+ } else {
+ // non-plot charts i.e pie/donut/circle
+ ttCtx.nonAxisChartsTooltips({
+ e: e,
+ opt: opt,
+ tooltipRect: ttCtx.tooltipRect
+ });
+ }
+ } // tooltip handling for line/area/bar/columns/scatter
+
+ }, {
+ key: "axisChartsTooltips",
+ value: function axisChartsTooltips(_ref2) {
+ var e = _ref2.e,
+ opt = _ref2.opt;
+ var w = this.w;
+ var x, y;
+ var seriesBound = opt.elGrid.getBoundingClientRect();
+ var clientX = e.type === 'touchmove' ? e.touches[0].clientX : e.clientX;
+ var clientY = e.type === 'touchmove' ? e.touches[0].clientY : e.clientY;
+ this.clientY = clientY;
+ this.clientX = clientX;
+ w.globals.capturedSeriesIndex = -1;
+ w.globals.capturedDataPointIndex = -1;
+
+ if (clientY < seriesBound.top || clientY > seriesBound.top + seriesBound.height) {
+ this.handleMouseOut(opt);
+ return;
+ }
+
+ if (Array.isArray(this.tConfig.enabledOnSeries) && !w.config.tooltip.shared) {
+ var index = parseInt(opt.paths.getAttribute('index'), 10);
+
+ if (this.tConfig.enabledOnSeries.indexOf(index) < 0) {
+ this.handleMouseOut(opt);
+ return;
+ }
+ }
+
+ var tooltipEl = this.getElTooltip();
+ var xcrosshairs = this.getElXCrosshairs();
+ var isStickyTooltip = w.globals.xyCharts || w.config.chart.type === 'bar' && !w.globals.isBarHorizontal && this.tooltipUtil.hasBars() && this.tConfig.shared || w.globals.comboCharts && this.tooltipUtil.hasBars();
+
+ if (e.type === 'mousemove' || e.type === 'touchmove' || e.type === 'mouseup') {
+ // there is no series to hover over
+ if (w.globals.collapsedSeries.length + w.globals.ancillaryCollapsedSeries.length === w.globals.series.length) {
+ return;
+ }
+
+ if (xcrosshairs !== null) {
+ xcrosshairs.classList.add('apexcharts-active');
+ }
+
+ var hasYAxisTooltip = this.yaxisTooltips.filter(function (b) {
+ return b === true;
+ });
+
+ if (this.ycrosshairs !== null && hasYAxisTooltip.length) {
+ this.ycrosshairs.classList.add('apexcharts-active');
+ }
+
+ if (isStickyTooltip && !this.showOnIntersect) {
+ this.handleStickyTooltip(e, clientX, clientY, opt);
+ } else {
+ if (w.config.chart.type === 'heatmap' || w.config.chart.type === 'treemap') {
+ var markerXY = this.intersect.handleHeatTreeTooltip({
+ e: e,
+ opt: opt,
+ x: x,
+ y: y,
+ type: w.config.chart.type
+ });
+ x = markerXY.x;
+ y = markerXY.y;
+ tooltipEl.style.left = x + 'px';
+ tooltipEl.style.top = y + 'px';
+ } else {
+ if (this.tooltipUtil.hasBars()) {
+ this.intersect.handleBarTooltip({
+ e: e,
+ opt: opt
+ });
+ }
+
+ if (this.tooltipUtil.hasMarkers()) {
+ // intersect - line/area/scatter/bubble
+ this.intersect.handleMarkerTooltip({
+ e: e,
+ opt: opt,
+ x: x,
+ y: y
+ });
+ }
+ }
+ }
+
+ if (this.yaxisTooltips.length) {
+ for (var yt = 0; yt < w.config.yaxis.length; yt++) {
+ this.axesTooltip.drawYaxisTooltipText(yt, clientY, this.xyRatios);
+ }
+ }
+
+ opt.tooltipEl.classList.add('apexcharts-active');
+ } else if (e.type === 'mouseout' || e.type === 'touchend') {
+ this.handleMouseOut(opt);
+ }
+ } // tooltip handling for pie/donuts
+
+ }, {
+ key: "nonAxisChartsTooltips",
+ value: function nonAxisChartsTooltips(_ref3) {
+ var e = _ref3.e,
+ opt = _ref3.opt,
+ tooltipRect = _ref3.tooltipRect;
+ var w = this.w;
+ var rel = opt.paths.getAttribute('rel');
+ var tooltipEl = this.getElTooltip();
+ var seriesBound = w.globals.dom.elWrap.getBoundingClientRect();
+
+ if (e.type === 'mousemove' || e.type === 'touchmove') {
+ tooltipEl.classList.add('apexcharts-active');
+ this.tooltipLabels.drawSeriesTexts({
+ ttItems: opt.ttItems,
+ i: parseInt(rel, 10) - 1,
+ shared: false
+ });
+ var x = w.globals.clientX - seriesBound.left - tooltipRect.ttWidth / 2;
+ var y = w.globals.clientY - seriesBound.top - tooltipRect.ttHeight - 10;
+ tooltipEl.style.left = x + 'px';
+ tooltipEl.style.top = y + 'px';
+
+ if (w.config.legend.tooltipHoverFormatter) {
+ var legendFormatter = w.config.legend.tooltipHoverFormatter;
+ var i = rel - 1;
+ var legendName = this.legendLabels[i].getAttribute('data:default-text');
+ var text = legendFormatter(legendName, {
+ seriesIndex: i,
+ dataPointIndex: i,
+ w: w
+ });
+ this.legendLabels[i].innerHTML = text;
+ }
+ } else if (e.type === 'mouseout' || e.type === 'touchend') {
+ tooltipEl.classList.remove('apexcharts-active');
+
+ if (w.config.legend.tooltipHoverFormatter) {
+ this.legendLabels.forEach(function (l) {
+ var defaultText = l.getAttribute('data:default-text');
+ l.innerHTML = decodeURIComponent(defaultText);
+ });
+ }
+ }
+ }
+ }, {
+ key: "handleStickyTooltip",
+ value: function handleStickyTooltip(e, clientX, clientY, opt) {
+ var w = this.w;
+ var capj = this.tooltipUtil.getNearestValues({
+ context: this,
+ hoverArea: opt.hoverArea,
+ elGrid: opt.elGrid,
+ clientX: clientX,
+ clientY: clientY
+ });
+ var j = capj.j;
+ var capturedSeries = capj.capturedSeries;
+ if (w.globals.collapsedSeriesIndices.includes(capturedSeries)) capturedSeries = null;
+ var bounds = opt.elGrid.getBoundingClientRect();
+
+ if (capj.hoverX < 0 || capj.hoverX > bounds.width) {
+ this.handleMouseOut(opt);
+ return;
+ }
+
+ if (capturedSeries !== null) {
+ this.handleStickyCapturedSeries(e, capturedSeries, opt, j);
+ } else {
+ // couldn't capture any series. check if shared X is same,
+ // if yes, draw a grouped tooltip
+ if (this.tooltipUtil.isXoverlap(j) || w.globals.isBarHorizontal) {
+ var firstVisibleSeries = w.globals.series.findIndex(function (s, i) {
+ return !w.globals.collapsedSeriesIndices.includes(i);
+ });
+ this.create(e, this, firstVisibleSeries, j, opt.ttItems);
+ }
+ }
+ }
+ }, {
+ key: "handleStickyCapturedSeries",
+ value: function handleStickyCapturedSeries(e, capturedSeries, opt, j) {
+ var w = this.w;
+
+ if (!this.tConfig.shared) {
+ var ignoreNull = w.globals.series[capturedSeries][j] === null;
+
+ if (ignoreNull) {
+ this.handleMouseOut(opt);
+ return;
+ }
+ }
+
+ if (typeof w.globals.series[capturedSeries][j] !== 'undefined') {
+ if (this.tConfig.shared && this.tooltipUtil.isXoverlap(j) && this.tooltipUtil.isInitialSeriesSameLen()) {
+ this.create(e, this, capturedSeries, j, opt.ttItems);
+ } else {
+ this.create(e, this, capturedSeries, j, opt.ttItems, false);
+ }
+ } else {
+ if (this.tooltipUtil.isXoverlap(j)) {
+ var firstVisibleSeries = w.globals.series.findIndex(function (s, i) {
+ return !w.globals.collapsedSeriesIndices.includes(i);
+ });
+ this.create(e, this, firstVisibleSeries, j, opt.ttItems);
+ }
+ }
+ }
+ }, {
+ key: "deactivateHoverFilter",
+ value: function deactivateHoverFilter() {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var allPaths = w.globals.dom.Paper.select(".apexcharts-bar-area");
+
+ for (var b = 0; b < allPaths.length; b++) {
+ graphics.pathMouseLeave(allPaths[b]);
+ }
+ }
+ }, {
+ key: "handleMouseOut",
+ value: function handleMouseOut(opt) {
+ var w = this.w;
+ var xcrosshairs = this.getElXCrosshairs();
+ opt.tooltipEl.classList.remove('apexcharts-active');
+ this.deactivateHoverFilter();
+
+ if (w.config.chart.type !== 'bubble') {
+ this.marker.resetPointsSize();
+ }
+
+ if (xcrosshairs !== null) {
+ xcrosshairs.classList.remove('apexcharts-active');
+ }
+
+ if (this.ycrosshairs !== null) {
+ this.ycrosshairs.classList.remove('apexcharts-active');
+ }
+
+ if (this.isXAxisTooltipEnabled) {
+ this.xaxisTooltip.classList.remove('apexcharts-active');
+ }
+
+ if (this.yaxisTooltips.length) {
+ if (this.yaxisTTEls === null) {
+ this.yaxisTTEls = w.globals.dom.baseEl.querySelectorAll('.apexcharts-yaxistooltip');
+ }
+
+ for (var i = 0; i < this.yaxisTTEls.length; i++) {
+ this.yaxisTTEls[i].classList.remove('apexcharts-active');
+ }
+ }
+
+ if (w.config.legend.tooltipHoverFormatter) {
+ this.legendLabels.forEach(function (l) {
+ var defaultText = l.getAttribute('data:default-text');
+ l.innerHTML = decodeURIComponent(defaultText);
+ });
+ }
+ }
+ }, {
+ key: "markerClick",
+ value: function markerClick(e, seriesIndex, dataPointIndex) {
+ var w = this.w;
+
+ if (typeof w.config.chart.events.markerClick === 'function') {
+ w.config.chart.events.markerClick(e, this.ctx, {
+ seriesIndex: seriesIndex,
+ dataPointIndex: dataPointIndex,
+ w: w
+ });
+ }
+
+ this.ctx.events.fireEvent('markerClick', [e, this.ctx, {
+ seriesIndex: seriesIndex,
+ dataPointIndex: dataPointIndex,
+ w: w
+ }]);
+ }
+ }, {
+ key: "create",
+ value: function create(e, context, capturedSeries, j, ttItems) {
+ var _w$globals$seriesRang, _w$globals$seriesRang2, _w$globals$seriesRang3, _w$globals$seriesRang4, _w$globals$seriesRang5, _w$globals$seriesRang6, _w$globals$seriesRang7, _w$globals$seriesRang8, _w$globals$seriesRang9, _w$globals$seriesRang10, _w$globals$seriesRang11, _w$globals$seriesRang12, _w$globals$seriesRang13, _w$globals$seriesRang14, _w$globals$seriesRang15, _w$globals$seriesRang16;
+
+ var shared = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : null;
+ var w = this.w;
+ var ttCtx = context;
+
+ if (e.type === 'mouseup') {
+ this.markerClick(e, capturedSeries, j);
+ }
+
+ if (shared === null) shared = this.tConfig.shared;
+ var hasMarkers = this.tooltipUtil.hasMarkers(capturedSeries);
+ var bars = this.tooltipUtil.getElBars();
+
+ if (w.config.legend.tooltipHoverFormatter) {
+ var legendFormatter = w.config.legend.tooltipHoverFormatter;
+ var els = Array.from(this.legendLabels); // reset all legend values first
+
+ els.forEach(function (l) {
+ var legendName = l.getAttribute('data:default-text');
+ l.innerHTML = decodeURIComponent(legendName);
+ }); // for irregular time series
+
+ for (var i = 0; i < els.length; i++) {
+ var l = els[i];
+ var lsIndex = parseInt(l.getAttribute('i'), 10);
+ var legendName = decodeURIComponent(l.getAttribute('data:default-text'));
+ var text = legendFormatter(legendName, {
+ seriesIndex: shared ? lsIndex : capturedSeries,
+ dataPointIndex: j,
+ w: w
+ });
+
+ if (!shared) {
+ l.innerHTML = lsIndex === capturedSeries ? text : legendName;
+
+ if (capturedSeries === lsIndex) {
+ break;
+ }
+ } else {
+ l.innerHTML = w.globals.collapsedSeriesIndices.indexOf(lsIndex) < 0 ? text : legendName;
+ }
+ }
+ }
+
+ var commonSeriesTextsParams = _objectSpread2(_objectSpread2({
+ ttItems: ttItems,
+ i: capturedSeries,
+ j: j
+ }, typeof ((_w$globals$seriesRang = w.globals.seriesRange) === null || _w$globals$seriesRang === void 0 ? void 0 : (_w$globals$seriesRang2 = _w$globals$seriesRang[capturedSeries]) === null || _w$globals$seriesRang2 === void 0 ? void 0 : (_w$globals$seriesRang3 = _w$globals$seriesRang2[j]) === null || _w$globals$seriesRang3 === void 0 ? void 0 : (_w$globals$seriesRang4 = _w$globals$seriesRang3.y[0]) === null || _w$globals$seriesRang4 === void 0 ? void 0 : _w$globals$seriesRang4.y1) !== 'undefined' && {
+ y1: (_w$globals$seriesRang5 = w.globals.seriesRange) === null || _w$globals$seriesRang5 === void 0 ? void 0 : (_w$globals$seriesRang6 = _w$globals$seriesRang5[capturedSeries]) === null || _w$globals$seriesRang6 === void 0 ? void 0 : (_w$globals$seriesRang7 = _w$globals$seriesRang6[j]) === null || _w$globals$seriesRang7 === void 0 ? void 0 : (_w$globals$seriesRang8 = _w$globals$seriesRang7.y[0]) === null || _w$globals$seriesRang8 === void 0 ? void 0 : _w$globals$seriesRang8.y1
+ }), typeof ((_w$globals$seriesRang9 = w.globals.seriesRange) === null || _w$globals$seriesRang9 === void 0 ? void 0 : (_w$globals$seriesRang10 = _w$globals$seriesRang9[capturedSeries]) === null || _w$globals$seriesRang10 === void 0 ? void 0 : (_w$globals$seriesRang11 = _w$globals$seriesRang10[j]) === null || _w$globals$seriesRang11 === void 0 ? void 0 : (_w$globals$seriesRang12 = _w$globals$seriesRang11.y[0]) === null || _w$globals$seriesRang12 === void 0 ? void 0 : _w$globals$seriesRang12.y2) !== 'undefined' && {
+ y2: (_w$globals$seriesRang13 = w.globals.seriesRange) === null || _w$globals$seriesRang13 === void 0 ? void 0 : (_w$globals$seriesRang14 = _w$globals$seriesRang13[capturedSeries]) === null || _w$globals$seriesRang14 === void 0 ? void 0 : (_w$globals$seriesRang15 = _w$globals$seriesRang14[j]) === null || _w$globals$seriesRang15 === void 0 ? void 0 : (_w$globals$seriesRang16 = _w$globals$seriesRang15.y[0]) === null || _w$globals$seriesRang16 === void 0 ? void 0 : _w$globals$seriesRang16.y2
+ });
+
+ if (shared) {
+ ttCtx.tooltipLabels.drawSeriesTexts(_objectSpread2(_objectSpread2({}, commonSeriesTextsParams), {}, {
+ shared: this.showOnIntersect ? false : this.tConfig.shared
+ }));
+
+ if (hasMarkers) {
+ if (w.globals.markers.largestSize > 0) {
+ ttCtx.marker.enlargePoints(j);
+ } else {
+ ttCtx.tooltipPosition.moveDynamicPointsOnHover(j);
+ }
+ } else if (this.tooltipUtil.hasBars()) {
+ this.barSeriesHeight = this.tooltipUtil.getBarsHeight(bars);
+
+ if (this.barSeriesHeight > 0) {
+ // hover state, activate snap filter
+ var graphics = new Graphics(this.ctx);
+ var paths = w.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(j, "']")); // de-activate first
+
+ this.deactivateHoverFilter();
+ this.tooltipPosition.moveStickyTooltipOverBars(j, capturedSeries);
+
+ for (var b = 0; b < paths.length; b++) {
+ graphics.pathMouseEnter(paths[b]);
+ }
+ }
+ }
+ } else {
+ ttCtx.tooltipLabels.drawSeriesTexts(_objectSpread2({
+ shared: false
+ }, commonSeriesTextsParams));
+
+ if (this.tooltipUtil.hasBars()) {
+ ttCtx.tooltipPosition.moveStickyTooltipOverBars(j, capturedSeries);
+ }
+
+ if (hasMarkers) {
+ ttCtx.tooltipPosition.moveMarkers(capturedSeries, j);
+ }
+ }
+ }
+ }]);
+
+ return Tooltip;
+ }();
+
+ var BarDataLabels = /*#__PURE__*/function () {
+ function BarDataLabels(barCtx) {
+ _classCallCheck(this, BarDataLabels);
+
+ this.w = barCtx.w;
+ this.barCtx = barCtx;
+ this.totalFormatter = this.w.config.plotOptions.bar.dataLabels.total.formatter;
+
+ if (!this.totalFormatter) {
+ this.totalFormatter = this.w.config.dataLabels.formatter;
+ }
+ }
+ /** handleBarDataLabels is used to calculate the positions for the data-labels
+ * It also sets the element's data attr for bars and calls drawCalculatedBarDataLabels()
+ * After calculating, it also calls the function to draw data labels
+ * @memberof Bar
+ * @param {object} {barProps} most of the bar properties used throughout the bar
+ * drawing function
+ * @return {object} dataLabels node-element which you can append later
+ **/
+
+
+ _createClass(BarDataLabels, [{
+ key: "handleBarDataLabels",
+ value: function handleBarDataLabels(opts) {
+ var x = opts.x,
+ y = opts.y,
+ y1 = opts.y1,
+ y2 = opts.y2,
+ i = opts.i,
+ j = opts.j,
+ realIndex = opts.realIndex,
+ groupIndex = opts.groupIndex,
+ series = opts.series,
+ barHeight = opts.barHeight,
+ barWidth = opts.barWidth,
+ barXPosition = opts.barXPosition,
+ barYPosition = opts.barYPosition,
+ visibleSeries = opts.visibleSeries,
+ renderedPath = opts.renderedPath;
+ var w = this.w;
+ var graphics = new Graphics(this.barCtx.ctx);
+ var strokeWidth = Array.isArray(this.barCtx.strokeWidth) ? this.barCtx.strokeWidth[realIndex] : this.barCtx.strokeWidth;
+ var bcx = x + parseFloat(barWidth * visibleSeries);
+ var bcy = y + parseFloat(barHeight * visibleSeries);
+
+ if (w.globals.isXNumeric && !w.globals.isBarHorizontal) {
+ bcx = x + parseFloat(barWidth * (visibleSeries + 1));
+ bcy = y + parseFloat(barHeight * (visibleSeries + 1)) - strokeWidth;
+ }
+
+ var dataLabels = null;
+ var totalDataLabels = null;
+ var dataLabelsX = x;
+ var dataLabelsY = y;
+ var dataLabelsPos = {};
+ var dataLabelsConfig = w.config.dataLabels;
+ var barDataLabelsConfig = this.barCtx.barOptions.dataLabels;
+ var barTotalDataLabelsConfig = this.barCtx.barOptions.dataLabels.total;
+
+ if (typeof barYPosition !== 'undefined' && this.barCtx.isRangeBar) {
+ bcy = barYPosition;
+ dataLabelsY = barYPosition;
+ }
+
+ if (typeof barXPosition !== 'undefined' && this.barCtx.isVerticalGroupedRangeBar) {
+ bcx = barXPosition;
+ dataLabelsX = barXPosition;
+ }
+
+ var offX = dataLabelsConfig.offsetX;
+ var offY = dataLabelsConfig.offsetY;
+ var textRects = {
+ width: 0,
+ height: 0
+ };
+
+ if (w.config.dataLabels.enabled) {
+ var yLabel = this.barCtx.series[i][j];
+ textRects = graphics.getTextRects(w.globals.yLabelFormatters[0](yLabel), parseFloat(dataLabelsConfig.style.fontSize));
+ }
+
+ var params = {
+ x: x,
+ y: y,
+ i: i,
+ j: j,
+ realIndex: realIndex,
+ groupIndex: !!groupIndex ? groupIndex : -1,
+ renderedPath: renderedPath,
+ bcx: bcx,
+ bcy: bcy,
+ barHeight: barHeight,
+ barWidth: barWidth,
+ textRects: textRects,
+ strokeWidth: strokeWidth,
+ dataLabelsX: dataLabelsX,
+ dataLabelsY: dataLabelsY,
+ dataLabelsConfig: dataLabelsConfig,
+ barDataLabelsConfig: barDataLabelsConfig,
+ barTotalDataLabelsConfig: barTotalDataLabelsConfig,
+ offX: offX,
+ offY: offY
+ };
+
+ if (this.barCtx.isHorizontal) {
+ dataLabelsPos = this.calculateBarsDataLabelsPosition(params);
+ } else {
+ dataLabelsPos = this.calculateColumnsDataLabelsPosition(params);
+ }
+
+ renderedPath.attr({
+ cy: dataLabelsPos.bcy,
+ cx: dataLabelsPos.bcx,
+ j: j,
+ val: series[i][j],
+ barHeight: barHeight,
+ barWidth: barWidth
+ });
+ dataLabels = this.drawCalculatedDataLabels({
+ x: dataLabelsPos.dataLabelsX,
+ y: dataLabelsPos.dataLabelsY,
+ val: this.barCtx.isRangeBar ? [y1, y2] : series[i][j],
+ i: realIndex,
+ j: j,
+ barWidth: barWidth,
+ barHeight: barHeight,
+ textRects: textRects,
+ dataLabelsConfig: dataLabelsConfig
+ });
+
+ if (w.config.chart.stacked && barTotalDataLabelsConfig.enabled) {
+ totalDataLabels = this.drawTotalDataLabels({
+ x: dataLabelsPos.totalDataLabelsX,
+ y: dataLabelsPos.totalDataLabelsY,
+ barWidth: barWidth,
+ barHeight: barHeight,
+ realIndex: realIndex,
+ textAnchor: dataLabelsPos.totalDataLabelsAnchor,
+ val: this.getStackedTotalDataLabel({
+ realIndex: realIndex,
+ j: j
+ }),
+ dataLabelsConfig: dataLabelsConfig,
+ barTotalDataLabelsConfig: barTotalDataLabelsConfig
+ });
+ }
+
+ return {
+ dataLabels: dataLabels,
+ totalDataLabels: totalDataLabels
+ };
+ }
+ }, {
+ key: "getStackedTotalDataLabel",
+ value: function getStackedTotalDataLabel(_ref) {
+ var realIndex = _ref.realIndex,
+ j = _ref.j;
+ var w = this.w;
+ var val = this.barCtx.stackedSeriesTotals[j];
+
+ if (this.totalFormatter) {
+ val = this.totalFormatter(val, _objectSpread2(_objectSpread2({}, w), {}, {
+ seriesIndex: realIndex,
+ dataPointIndex: j,
+ w: w
+ }));
+ }
+
+ return val;
+ }
+ }, {
+ key: "calculateColumnsDataLabelsPosition",
+ value: function calculateColumnsDataLabelsPosition(opts) {
+ var w = this.w;
+ var i = opts.i,
+ j = opts.j,
+ realIndex = opts.realIndex,
+ groupIndex = opts.groupIndex,
+ y = opts.y,
+ bcx = opts.bcx,
+ barWidth = opts.barWidth,
+ barHeight = opts.barHeight,
+ textRects = opts.textRects,
+ dataLabelsX = opts.dataLabelsX,
+ dataLabelsY = opts.dataLabelsY,
+ dataLabelsConfig = opts.dataLabelsConfig,
+ barDataLabelsConfig = opts.barDataLabelsConfig,
+ barTotalDataLabelsConfig = opts.barTotalDataLabelsConfig,
+ strokeWidth = opts.strokeWidth,
+ offX = opts.offX,
+ offY = opts.offY;
+ var totalDataLabelsY;
+ var totalDataLabelsX;
+ var totalDataLabelsAnchor = 'middle';
+ barHeight = Math.abs(barHeight);
+ var vertical = w.config.plotOptions.bar.dataLabels.orientation === 'vertical';
+
+ var _this$barCtx$barHelpe = this.barCtx.barHelpers.getZeroValueEncounters({
+ i: i,
+ j: j
+ }),
+ zeroEncounters = _this$barCtx$barHelpe.zeroEncounters;
+
+ bcx = bcx - strokeWidth / 2 + (groupIndex !== -1 ? groupIndex * barWidth : 0);
+ var dataPointsDividedWidth = w.globals.gridWidth / w.globals.dataPoints;
+
+ if (this.barCtx.isVerticalGroupedRangeBar) {
+ dataLabelsX = dataLabelsX + barWidth / 2;
+ } else {
+ if (w.globals.isXNumeric) {
+ dataLabelsX = bcx - barWidth / 2 + offX;
+ } else {
+ dataLabelsX = bcx - dataPointsDividedWidth + barWidth / 2 + offX;
+ }
+
+ if (zeroEncounters > 0 && w.config.plotOptions.bar.hideZeroBarsWhenGrouped) {
+ dataLabelsX = dataLabelsX - barWidth * zeroEncounters;
+ }
+ }
+
+ if (vertical) {
+ var offsetDLX = 2;
+ dataLabelsX = dataLabelsX + textRects.height / 2 - strokeWidth / 2 - offsetDLX;
+ }
+
+ var valIsNegative = this.barCtx.series[i][j] < 0;
+ var newY = y;
+
+ if (this.barCtx.isReversed) {
+ newY = y - barHeight + (valIsNegative ? barHeight * 2 : 0);
+ y = y - barHeight;
+ }
+
+ switch (barDataLabelsConfig.position) {
+ case 'center':
+ if (vertical) {
+ if (valIsNegative) {
+ dataLabelsY = newY - barHeight / 2 + offY;
+ } else {
+ dataLabelsY = newY + barHeight / 2 - offY;
+ }
+ } else {
+ if (valIsNegative) {
+ dataLabelsY = newY - barHeight / 2 + textRects.height / 2 + offY;
+ } else {
+ dataLabelsY = newY + barHeight / 2 + textRects.height / 2 - offY;
+ }
+ }
+
+ break;
+
+ case 'bottom':
+ if (vertical) {
+ if (valIsNegative) {
+ dataLabelsY = newY - barHeight + offY;
+ } else {
+ dataLabelsY = newY + barHeight - offY;
+ }
+ } else {
+ if (valIsNegative) {
+ dataLabelsY = newY - barHeight + textRects.height + strokeWidth + offY;
+ } else {
+ dataLabelsY = newY + barHeight - textRects.height / 2 + strokeWidth - offY;
+ }
+ }
+
+ break;
+
+ case 'top':
+ if (vertical) {
+ if (valIsNegative) {
+ dataLabelsY = newY + offY;
+ } else {
+ dataLabelsY = newY - offY;
+ }
+ } else {
+ if (valIsNegative) {
+ dataLabelsY = newY - textRects.height / 2 - offY;
+ } else {
+ dataLabelsY = newY + textRects.height + offY;
+ }
+ }
+
+ break;
+ }
+
+ if (this.barCtx.lastActiveBarSerieIndex === realIndex && barTotalDataLabelsConfig.enabled) {
+ var ADDITIONAL_OFFX = 18;
+ var graphics = new Graphics(this.barCtx.ctx);
+ var totalLabeltextRects = graphics.getTextRects(this.getStackedTotalDataLabel({
+ realIndex: realIndex,
+ j: j
+ }), dataLabelsConfig.fontSize);
+
+ if (valIsNegative) {
+ totalDataLabelsY = newY - totalLabeltextRects.height / 2 - offY - barTotalDataLabelsConfig.offsetY + ADDITIONAL_OFFX;
+ } else {
+ totalDataLabelsY = newY + totalLabeltextRects.height + offY + barTotalDataLabelsConfig.offsetY - ADDITIONAL_OFFX;
+ }
+
+ totalDataLabelsX = dataLabelsX + barTotalDataLabelsConfig.offsetX;
+ }
+
+ if (!w.config.chart.stacked) {
+ if (dataLabelsY < 0) {
+ dataLabelsY = 0 + strokeWidth;
+ } else if (dataLabelsY + textRects.height / 3 > w.globals.gridHeight) {
+ dataLabelsY = w.globals.gridHeight - strokeWidth;
+ }
+ }
+
+ return {
+ bcx: bcx,
+ bcy: y,
+ dataLabelsX: dataLabelsX,
+ dataLabelsY: dataLabelsY,
+ totalDataLabelsX: totalDataLabelsX,
+ totalDataLabelsY: totalDataLabelsY,
+ totalDataLabelsAnchor: totalDataLabelsAnchor
+ };
+ }
+ }, {
+ key: "calculateBarsDataLabelsPosition",
+ value: function calculateBarsDataLabelsPosition(opts) {
+ var w = this.w;
+ var x = opts.x,
+ i = opts.i,
+ j = opts.j,
+ realIndex = opts.realIndex,
+ groupIndex = opts.groupIndex,
+ bcy = opts.bcy,
+ barHeight = opts.barHeight,
+ barWidth = opts.barWidth,
+ textRects = opts.textRects,
+ dataLabelsX = opts.dataLabelsX,
+ strokeWidth = opts.strokeWidth,
+ dataLabelsConfig = opts.dataLabelsConfig,
+ barDataLabelsConfig = opts.barDataLabelsConfig,
+ barTotalDataLabelsConfig = opts.barTotalDataLabelsConfig,
+ offX = opts.offX,
+ offY = opts.offY;
+ var dataPointsDividedHeight = w.globals.gridHeight / w.globals.dataPoints;
+ barWidth = Math.abs(barWidth);
+ bcy = bcy + (groupIndex !== -1 ? groupIndex * barHeight : 0);
+ var dataLabelsY = bcy - (this.barCtx.isRangeBar ? 0 : dataPointsDividedHeight) + barHeight / 2 + textRects.height / 2 + offY - 3;
+ var totalDataLabelsX;
+ var totalDataLabelsY;
+ var totalDataLabelsAnchor = 'start';
+ var valIsNegative = this.barCtx.series[i][j] < 0;
+ var newX = x;
+
+ if (this.barCtx.isReversed) {
+ newX = x + barWidth - (valIsNegative ? barWidth * 2 : 0);
+ x = w.globals.gridWidth - barWidth;
+ }
+
+ switch (barDataLabelsConfig.position) {
+ case 'center':
+ if (valIsNegative) {
+ dataLabelsX = newX + barWidth / 2 - offX;
+ } else {
+ dataLabelsX = Math.max(textRects.width / 2, newX - barWidth / 2) + offX;
+ }
+
+ break;
+
+ case 'bottom':
+ if (valIsNegative) {
+ dataLabelsX = newX + barWidth - strokeWidth - Math.round(textRects.width / 2) - offX;
+ } else {
+ dataLabelsX = newX - barWidth + strokeWidth + Math.round(textRects.width / 2) + offX;
+ }
+
+ break;
+
+ case 'top':
+ if (valIsNegative) {
+ dataLabelsX = newX - strokeWidth + Math.round(textRects.width / 2) - offX;
+ } else {
+ dataLabelsX = newX - strokeWidth - Math.round(textRects.width / 2) + offX;
+ }
+
+ break;
+ }
+
+ if (this.barCtx.lastActiveBarSerieIndex === realIndex && barTotalDataLabelsConfig.enabled) {
+ var ADDITIONAL_OFFX = 15;
+ var graphics = new Graphics(this.barCtx.ctx);
+ var totalLabeltextRects = graphics.getTextRects(this.getStackedTotalDataLabel({
+ realIndex: realIndex,
+ j: j
+ }), dataLabelsConfig.fontSize);
+
+ if (valIsNegative) {
+ totalDataLabelsX = newX - strokeWidth + Math.round(totalLabeltextRects.width / 2) - offX - barTotalDataLabelsConfig.offsetX - ADDITIONAL_OFFX;
+ totalDataLabelsAnchor = 'end';
+ } else {
+ totalDataLabelsX = newX - strokeWidth - Math.round(totalLabeltextRects.width / 2) + offX + barTotalDataLabelsConfig.offsetX + ADDITIONAL_OFFX;
+ }
+
+ totalDataLabelsY = dataLabelsY + barTotalDataLabelsConfig.offsetY;
+ }
+
+ if (!w.config.chart.stacked) {
+ if (dataLabelsX < 0) {
+ dataLabelsX = dataLabelsX + textRects.width + strokeWidth;
+ } else if (dataLabelsX + textRects.width / 2 > w.globals.gridWidth) {
+ dataLabelsX = w.globals.gridWidth - textRects.width - strokeWidth;
+ }
+ }
+
+ return {
+ bcx: x,
+ bcy: bcy,
+ dataLabelsX: dataLabelsX,
+ dataLabelsY: dataLabelsY,
+ totalDataLabelsX: totalDataLabelsX,
+ totalDataLabelsY: totalDataLabelsY,
+ totalDataLabelsAnchor: totalDataLabelsAnchor
+ };
+ }
+ }, {
+ key: "drawCalculatedDataLabels",
+ value: function drawCalculatedDataLabels(_ref2) {
+ var x = _ref2.x,
+ y = _ref2.y,
+ val = _ref2.val,
+ i = _ref2.i,
+ j = _ref2.j,
+ textRects = _ref2.textRects,
+ barHeight = _ref2.barHeight,
+ barWidth = _ref2.barWidth,
+ dataLabelsConfig = _ref2.dataLabelsConfig;
+ var w = this.w;
+ var rotate = 'rotate(0)';
+ if (w.config.plotOptions.bar.dataLabels.orientation === 'vertical') rotate = "rotate(-90, ".concat(x, ", ").concat(y, ")");
+ var dataLabels = new DataLabels(this.barCtx.ctx);
+ var graphics = new Graphics(this.barCtx.ctx);
+ var formatter = dataLabelsConfig.formatter;
+ var elDataLabelsWrap = null;
+ var isSeriesNotCollapsed = w.globals.collapsedSeriesIndices.indexOf(i) > -1;
+
+ if (dataLabelsConfig.enabled && !isSeriesNotCollapsed) {
+ elDataLabelsWrap = graphics.group({
+ class: 'apexcharts-data-labels',
+ transform: rotate
+ });
+ var text = '';
+
+ if (typeof val !== 'undefined') {
+ text = formatter(val, _objectSpread2(_objectSpread2({}, w), {}, {
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ }));
+ }
+
+ if (!val && w.config.plotOptions.bar.hideZeroBarsWhenGrouped) {
+ text = '';
+ }
+
+ var valIsNegative = w.globals.series[i][j] < 0;
+ var position = w.config.plotOptions.bar.dataLabels.position;
+
+ if (w.config.plotOptions.bar.dataLabels.orientation === 'vertical') {
+ if (position === 'top') {
+ if (valIsNegative) dataLabelsConfig.textAnchor = 'end';else dataLabelsConfig.textAnchor = 'start';
+ }
+
+ if (position === 'center') {
+ dataLabelsConfig.textAnchor = 'middle';
+ }
+
+ if (position === 'bottom') {
+ if (valIsNegative) dataLabelsConfig.textAnchor = 'end';else dataLabelsConfig.textAnchor = 'start';
+ }
+ }
+
+ if (this.barCtx.isRangeBar && this.barCtx.barOptions.dataLabels.hideOverflowingLabels) {
+ // hide the datalabel if it cannot fit into the rect
+ var txRect = graphics.getTextRects(text, parseFloat(dataLabelsConfig.style.fontSize));
+
+ if (barWidth < txRect.width) {
+ text = '';
+ }
+ }
+
+ if (w.config.chart.stacked && this.barCtx.barOptions.dataLabels.hideOverflowingLabels) {
+ // if there is not enough space to draw the label in the bar/column rect, check hideOverflowingLabels property to prevent overflowing on wrong rect
+ // Note: This issue is only seen in stacked charts
+ if (this.barCtx.isHorizontal) {
+ if (textRects.width / 1.6 > Math.abs(barWidth)) {
+ text = '';
+ }
+ } else {
+ if (textRects.height / 1.6 > Math.abs(barHeight)) {
+ text = '';
+ }
+ }
+ }
+
+ var modifiedDataLabelsConfig = _objectSpread2({}, dataLabelsConfig);
+
+ if (this.barCtx.isHorizontal) {
+ if (val < 0) {
+ if (dataLabelsConfig.textAnchor === 'start') {
+ modifiedDataLabelsConfig.textAnchor = 'end';
+ } else if (dataLabelsConfig.textAnchor === 'end') {
+ modifiedDataLabelsConfig.textAnchor = 'start';
+ }
+ }
+ }
+
+ dataLabels.plotDataLabelsText({
+ x: x,
+ y: y,
+ text: text,
+ i: i,
+ j: j,
+ parent: elDataLabelsWrap,
+ dataLabelsConfig: modifiedDataLabelsConfig,
+ alwaysDrawDataLabel: true,
+ offsetCorrection: true
+ });
+ }
+
+ return elDataLabelsWrap;
+ }
+ }, {
+ key: "drawTotalDataLabels",
+ value: function drawTotalDataLabels(_ref3) {
+ var x = _ref3.x,
+ y = _ref3.y,
+ val = _ref3.val,
+ barWidth = _ref3.barWidth,
+ barHeight = _ref3.barHeight,
+ realIndex = _ref3.realIndex,
+ textAnchor = _ref3.textAnchor,
+ barTotalDataLabelsConfig = _ref3.barTotalDataLabelsConfig;
+ var w = this.w;
+ var graphics = new Graphics(this.barCtx.ctx);
+ var totalDataLabelText;
+
+ if (barTotalDataLabelsConfig.enabled && typeof x !== 'undefined' && typeof y !== 'undefined' && this.barCtx.lastActiveBarSerieIndex === realIndex) {
+ totalDataLabelText = graphics.drawText({
+ x: x - (!w.globals.isBarHorizontal && w.globals.seriesGroups.length ? barWidth / w.globals.seriesGroups.length : 0),
+ y: y - (w.globals.isBarHorizontal && w.globals.seriesGroups.length ? barHeight / w.globals.seriesGroups.length : 0),
+ foreColor: barTotalDataLabelsConfig.style.color,
+ text: val,
+ textAnchor: textAnchor,
+ fontFamily: barTotalDataLabelsConfig.style.fontFamily,
+ fontSize: barTotalDataLabelsConfig.style.fontSize,
+ fontWeight: barTotalDataLabelsConfig.style.fontWeight
+ });
+ }
+
+ return totalDataLabelText;
+ }
+ }]);
+
+ return BarDataLabels;
+ }();
+
+ var Helpers$1 = /*#__PURE__*/function () {
+ function Helpers(barCtx) {
+ _classCallCheck(this, Helpers);
+
+ this.w = barCtx.w;
+ this.barCtx = barCtx;
+ }
+
+ _createClass(Helpers, [{
+ key: "initVariables",
+ value: function initVariables(series) {
+ var w = this.w;
+ this.barCtx.series = series;
+ this.barCtx.totalItems = 0;
+ this.barCtx.seriesLen = 0;
+ this.barCtx.visibleI = -1; // visible Series
+
+ this.barCtx.visibleItems = 1; // number of visible bars after user zoomed in/out
+
+ for (var sl = 0; sl < series.length; sl++) {
+ if (series[sl].length > 0) {
+ this.barCtx.seriesLen = this.barCtx.seriesLen + 1;
+ this.barCtx.totalItems += series[sl].length;
+ }
+
+ if (w.globals.isXNumeric) {
+ // get max visible items
+ for (var j = 0; j < series[sl].length; j++) {
+ if (w.globals.seriesX[sl][j] > w.globals.minX && w.globals.seriesX[sl][j] < w.globals.maxX) {
+ this.barCtx.visibleItems++;
+ }
+ }
+ } else {
+ this.barCtx.visibleItems = w.globals.dataPoints;
+ }
+ }
+
+ if (this.barCtx.seriesLen === 0) {
+ // A small adjustment when combo charts are used
+ this.barCtx.seriesLen = 1;
+ }
+
+ this.barCtx.zeroSerieses = [];
+
+ if (!w.globals.comboCharts) {
+ this.checkZeroSeries({
+ series: series
+ });
+ }
+ }
+ }, {
+ key: "initialPositions",
+ value: function initialPositions() {
+ var w = this.w;
+ var x, y, yDivision, xDivision, barHeight, barWidth, zeroH, zeroW;
+ var dataPoints = w.globals.dataPoints;
+
+ if (this.barCtx.isRangeBar) {
+ // timeline rangebar chart
+ dataPoints = w.globals.labels.length;
+ }
+
+ var seriesLen = this.barCtx.seriesLen;
+
+ if (w.config.plotOptions.bar.rangeBarGroupRows) {
+ seriesLen = 1;
+ }
+
+ if (this.barCtx.isHorizontal) {
+ // height divided into equal parts
+ yDivision = w.globals.gridHeight / dataPoints;
+ barHeight = yDivision / seriesLen;
+
+ if (w.globals.isXNumeric) {
+ yDivision = w.globals.gridHeight / this.barCtx.totalItems;
+ barHeight = yDivision / this.barCtx.seriesLen;
+ }
+
+ barHeight = barHeight * parseInt(this.barCtx.barOptions.barHeight, 10) / 100;
+
+ if (String(this.barCtx.barOptions.barHeight).indexOf('%') === -1) {
+ barHeight = parseInt(this.barCtx.barOptions.barHeight, 10);
+ }
+
+ zeroW = this.barCtx.baseLineInvertedY + w.globals.padHorizontal + (this.barCtx.isReversed ? w.globals.gridWidth : 0) - (this.barCtx.isReversed ? this.barCtx.baseLineInvertedY * 2 : 0);
+
+ if (this.barCtx.isFunnel) {
+ zeroW = w.globals.gridWidth / 2;
+ }
+
+ y = (yDivision - barHeight * this.barCtx.seriesLen) / 2;
+ } else {
+ // width divided into equal parts
+ xDivision = w.globals.gridWidth / this.barCtx.visibleItems;
+
+ if (w.config.xaxis.convertedCatToNumeric) {
+ xDivision = w.globals.gridWidth / w.globals.dataPoints;
+ }
+
+ barWidth = xDivision / seriesLen * parseInt(this.barCtx.barOptions.columnWidth, 10) / 100;
+
+ if (w.globals.isXNumeric) {
+ // max barwidth should be equal to minXDiff to avoid overlap
+ var xRatio = this.barCtx.xRatio;
+
+ if (w.globals.minXDiff && w.globals.minXDiff !== 0.5 && w.globals.minXDiff / xRatio > 0) {
+ xDivision = w.globals.minXDiff / xRatio;
+ }
+
+ barWidth = xDivision / seriesLen * parseInt(this.barCtx.barOptions.columnWidth, 10) / 100;
+
+ if (barWidth < 1) {
+ barWidth = 1;
+ }
+ }
+
+ if (String(this.barCtx.barOptions.columnWidth).indexOf('%') === -1) {
+ barWidth = parseInt(this.barCtx.barOptions.columnWidth, 10);
+ }
+
+ zeroH = w.globals.gridHeight - this.barCtx.baseLineY[this.barCtx.translationsIndex] - (this.barCtx.isReversed ? w.globals.gridHeight : 0) + (this.barCtx.isReversed ? this.barCtx.baseLineY[this.barCtx.translationsIndex] * 2 : 0);
+ x = w.globals.padHorizontal + (xDivision - barWidth * this.barCtx.seriesLen) / 2;
+ }
+
+ w.globals.barHeight = barHeight;
+ w.globals.barWidth = barWidth;
+ return {
+ x: x,
+ y: y,
+ yDivision: yDivision,
+ xDivision: xDivision,
+ barHeight: barHeight,
+ barWidth: barWidth,
+ zeroH: zeroH,
+ zeroW: zeroW
+ };
+ }
+ }, {
+ key: "initializeStackedPrevVars",
+ value: function initializeStackedPrevVars(ctx) {
+ var w = ctx.w;
+
+ if (w.globals.hasSeriesGroups) {
+ w.globals.seriesGroups.forEach(function (group) {
+ if (!ctx[group]) ctx[group] = {};
+ ctx[group].prevY = [];
+ ctx[group].prevX = [];
+ ctx[group].prevYF = [];
+ ctx[group].prevXF = [];
+ ctx[group].prevYVal = [];
+ ctx[group].prevXVal = [];
+ });
+ } else {
+ ctx.prevY = []; // y position on chart (in columns)
+
+ ctx.prevX = []; // x position on chart (in horz bars)
+
+ ctx.prevYF = []; // starting y and ending y (height) in columns
+
+ ctx.prevXF = []; // starting x and ending x (width) in bars
+
+ ctx.prevYVal = []; // y values (series[i][j]) in columns
+
+ ctx.prevXVal = []; // x values (series[i][j]) in bars
+ }
+ }
+ }, {
+ key: "initializeStackedXYVars",
+ value: function initializeStackedXYVars(ctx) {
+ var w = ctx.w;
+
+ if (w.globals.hasSeriesGroups) {
+ w.globals.seriesGroups.forEach(function (group) {
+ if (!ctx[group]) ctx[group] = {};
+ ctx[group].xArrj = [];
+ ctx[group].xArrjF = [];
+ ctx[group].xArrjVal = [];
+ ctx[group].yArrj = [];
+ ctx[group].yArrjF = [];
+ ctx[group].yArrjVal = [];
+ });
+ } else {
+ ctx.xArrj = []; // xj indicates x position on graph in bars
+
+ ctx.xArrjF = []; // xjF indicates bar's x position + x2 positions in bars
+
+ ctx.xArrjVal = []; // x val means the actual series's y values in horizontal/bars
+
+ ctx.yArrj = []; // yj indicates y position on graph in columns
+
+ ctx.yArrjF = []; // yjF indicates bar's y position + y2 positions in columns
+
+ ctx.yArrjVal = []; // y val means the actual series's y values in columns
+ }
+ }
+ }, {
+ key: "getPathFillColor",
+ value: function getPathFillColor(series, i, j, realIndex) {
+ var _w$config$series$i$da, _w$config$series$i$da2, _w$config$series$i$da3, _w$config$series$i$da4;
+
+ var w = this.w;
+ var fill = new Fill(this.barCtx.ctx);
+ var fillColor = null;
+ var seriesNumber = this.barCtx.barOptions.distributed ? j : i;
+
+ if (this.barCtx.barOptions.colors.ranges.length > 0) {
+ var colorRange = this.barCtx.barOptions.colors.ranges;
+ colorRange.map(function (range) {
+ if (series[i][j] >= range.from && series[i][j] <= range.to) {
+ fillColor = range.color;
+ }
+ });
+ }
+
+ if (w.config.series[i].data[j] && w.config.series[i].data[j].fillColor) {
+ fillColor = w.config.series[i].data[j].fillColor;
+ }
+
+ var pathFill = fill.fillPath({
+ seriesNumber: this.barCtx.barOptions.distributed ? seriesNumber : realIndex,
+ dataPointIndex: j,
+ color: fillColor,
+ value: series[i][j],
+ fillConfig: (_w$config$series$i$da = w.config.series[i].data[j]) === null || _w$config$series$i$da === void 0 ? void 0 : _w$config$series$i$da.fill,
+ fillType: (_w$config$series$i$da2 = w.config.series[i].data[j]) !== null && _w$config$series$i$da2 !== void 0 && (_w$config$series$i$da3 = _w$config$series$i$da2.fill) !== null && _w$config$series$i$da3 !== void 0 && _w$config$series$i$da3.type ? (_w$config$series$i$da4 = w.config.series[i].data[j]) === null || _w$config$series$i$da4 === void 0 ? void 0 : _w$config$series$i$da4.fill.type : Array.isArray(w.config.fill.type) ? w.config.fill.type[i] : w.config.fill.type
+ });
+ return pathFill;
+ }
+ }, {
+ key: "getStrokeWidth",
+ value: function getStrokeWidth(i, j, realIndex) {
+ var strokeWidth = 0;
+ var w = this.w;
+
+ if (typeof this.barCtx.series[i][j] === 'undefined' || this.barCtx.series[i][j] === null) {
+ this.barCtx.isNullValue = true;
+ } else {
+ this.barCtx.isNullValue = false;
+ }
+
+ if (w.config.stroke.show) {
+ if (!this.barCtx.isNullValue) {
+ strokeWidth = Array.isArray(this.barCtx.strokeWidth) ? this.barCtx.strokeWidth[realIndex] : this.barCtx.strokeWidth;
+ }
+ }
+
+ return strokeWidth;
+ }
+ }, {
+ key: "shouldApplyRadius",
+ value: function shouldApplyRadius(realIndex) {
+ var w = this.w;
+ var applyRadius = false;
+
+ if (w.config.plotOptions.bar.borderRadius > 0) {
+ if (w.config.chart.stacked) {
+ if (w.config.plotOptions.bar.borderRadiusWhenStacked === 'last') {
+ if (this.barCtx.lastActiveBarSerieIndex === realIndex) {
+ applyRadius = true;
+ }
+ } else {
+ applyRadius = true;
+ }
+ } else {
+ applyRadius = true;
+ }
+ }
+
+ return applyRadius;
+ }
+ }, {
+ key: "barBackground",
+ value: function barBackground(_ref) {
+ var j = _ref.j,
+ i = _ref.i,
+ x1 = _ref.x1,
+ x2 = _ref.x2,
+ y1 = _ref.y1,
+ y2 = _ref.y2,
+ elSeries = _ref.elSeries;
+ var w = this.w;
+ var graphics = new Graphics(this.barCtx.ctx);
+ var sr = new Series(this.barCtx.ctx);
+ var activeSeriesIndex = sr.getActiveConfigSeriesIndex();
+
+ if (this.barCtx.barOptions.colors.backgroundBarColors.length > 0 && activeSeriesIndex === i) {
+ if (j >= this.barCtx.barOptions.colors.backgroundBarColors.length) {
+ j %= this.barCtx.barOptions.colors.backgroundBarColors.length;
+ }
+
+ var bcolor = this.barCtx.barOptions.colors.backgroundBarColors[j];
+ var rect = graphics.drawRect(typeof x1 !== 'undefined' ? x1 : 0, typeof y1 !== 'undefined' ? y1 : 0, typeof x2 !== 'undefined' ? x2 : w.globals.gridWidth, typeof y2 !== 'undefined' ? y2 : w.globals.gridHeight, this.barCtx.barOptions.colors.backgroundBarRadius, bcolor, this.barCtx.barOptions.colors.backgroundBarOpacity);
+ elSeries.add(rect);
+ rect.node.classList.add('apexcharts-backgroundBar');
+ }
+ }
+ }, {
+ key: "getColumnPaths",
+ value: function getColumnPaths(_ref2) {
+ var _w$config$series$real;
+
+ var barWidth = _ref2.barWidth,
+ barXPosition = _ref2.barXPosition,
+ y1 = _ref2.y1,
+ y2 = _ref2.y2,
+ strokeWidth = _ref2.strokeWidth,
+ seriesGroup = _ref2.seriesGroup,
+ realIndex = _ref2.realIndex,
+ i = _ref2.i,
+ j = _ref2.j,
+ w = _ref2.w;
+ var graphics = new Graphics(this.barCtx.ctx);
+ strokeWidth = Array.isArray(strokeWidth) ? strokeWidth[realIndex] : strokeWidth;
+ if (!strokeWidth) strokeWidth = 0;
+ var bW = barWidth;
+ var bXP = barXPosition;
+
+ if ((_w$config$series$real = w.config.series[realIndex].data[j]) !== null && _w$config$series$real !== void 0 && _w$config$series$real.columnWidthOffset) {
+ bXP = barXPosition - w.config.series[realIndex].data[j].columnWidthOffset / 2;
+ bW = barWidth + w.config.series[realIndex].data[j].columnWidthOffset;
+ }
+
+ var x1 = bXP;
+ var x2 = bXP + bW; // append tiny pixels to avoid exponentials (which cause issues in border-radius)
+
+ y1 += 0.001;
+ y2 += 0.001;
+ var pathTo = graphics.move(x1, y1);
+ var pathFrom = graphics.move(x1, y1);
+ var sl = graphics.line(x2 - strokeWidth, y1);
+
+ if (w.globals.previousPaths.length > 0) {
+ pathFrom = this.barCtx.getPreviousPath(realIndex, j, false);
+ }
+
+ pathTo = pathTo + graphics.line(x1, y2) + graphics.line(x2 - strokeWidth, y2) + graphics.line(x2 - strokeWidth, y1) + (w.config.plotOptions.bar.borderRadiusApplication === 'around' ? ' Z' : ' z'); // the lines in pathFrom are repeated to equal it to the points of pathTo
+ // this is to avoid weird animation (bug in svg.js)
+
+ pathFrom = pathFrom + graphics.line(x1, y1) + sl + sl + sl + sl + sl + graphics.line(x1, y1) + (w.config.plotOptions.bar.borderRadiusApplication === 'around' ? ' Z' : ' z');
+
+ if (this.shouldApplyRadius(realIndex)) {
+ pathTo = graphics.roundPathCorners(pathTo, w.config.plotOptions.bar.borderRadius);
+ }
+
+ if (w.config.chart.stacked) {
+ var _ctx = this.barCtx;
+
+ if (w.globals.hasSeriesGroups && seriesGroup) {
+ _ctx = this.barCtx[seriesGroup];
+ }
+
+ _ctx.yArrj.push(y2);
+
+ _ctx.yArrjF.push(Math.abs(y1 - y2));
+
+ _ctx.yArrjVal.push(this.barCtx.series[i][j]);
+ }
+
+ return {
+ pathTo: pathTo,
+ pathFrom: pathFrom
+ };
+ }
+ }, {
+ key: "getBarpaths",
+ value: function getBarpaths(_ref3) {
+ var _w$config$series$real2;
+
+ var barYPosition = _ref3.barYPosition,
+ barHeight = _ref3.barHeight,
+ x1 = _ref3.x1,
+ x2 = _ref3.x2,
+ strokeWidth = _ref3.strokeWidth,
+ seriesGroup = _ref3.seriesGroup,
+ realIndex = _ref3.realIndex,
+ i = _ref3.i,
+ j = _ref3.j,
+ w = _ref3.w;
+ var graphics = new Graphics(this.barCtx.ctx);
+ strokeWidth = Array.isArray(strokeWidth) ? strokeWidth[realIndex] : strokeWidth;
+ if (!strokeWidth) strokeWidth = 0;
+ var bYP = barYPosition;
+ var bH = barHeight;
+
+ if ((_w$config$series$real2 = w.config.series[realIndex].data[j]) !== null && _w$config$series$real2 !== void 0 && _w$config$series$real2.barHeightOffset) {
+ bYP = barYPosition - w.config.series[realIndex].data[j].barHeightOffset / 2;
+ bH = barHeight + w.config.series[realIndex].data[j].barHeightOffset;
+ }
+
+ var y1 = bYP;
+ var y2 = bYP + bH; // append tiny pixels to avoid exponentials (which cause issues in border-radius)
+
+ x1 += 0.001;
+ x2 += 0.001;
+ var pathTo = graphics.move(x1, y1);
+ var pathFrom = graphics.move(x1, y1);
+
+ if (w.globals.previousPaths.length > 0) {
+ pathFrom = this.barCtx.getPreviousPath(realIndex, j, false);
+ }
+
+ var sl = graphics.line(x1, y2 - strokeWidth);
+ pathTo = pathTo + graphics.line(x2, y1) + graphics.line(x2, y2 - strokeWidth) + sl + (w.config.plotOptions.bar.borderRadiusApplication === 'around' ? ' Z' : ' z');
+ pathFrom = pathFrom + graphics.line(x1, y1) + sl + sl + sl + sl + sl + graphics.line(x1, y1) + (w.config.plotOptions.bar.borderRadiusApplication === 'around' ? ' Z' : ' z');
+
+ if (this.shouldApplyRadius(realIndex)) {
+ pathTo = graphics.roundPathCorners(pathTo, w.config.plotOptions.bar.borderRadius);
+ }
+
+ if (w.config.chart.stacked) {
+ var _ctx = this.barCtx;
+
+ if (w.globals.hasSeriesGroups && seriesGroup) {
+ _ctx = this.barCtx[seriesGroup];
+ }
+
+ _ctx.xArrj.push(x2);
+
+ _ctx.xArrjF.push(Math.abs(x1 - x2));
+
+ _ctx.xArrjVal.push(this.barCtx.series[i][j]);
+ }
+
+ return {
+ pathTo: pathTo,
+ pathFrom: pathFrom
+ };
+ }
+ }, {
+ key: "checkZeroSeries",
+ value: function checkZeroSeries(_ref4) {
+ var series = _ref4.series;
+ var w = this.w;
+
+ for (var zs = 0; zs < series.length; zs++) {
+ var total = 0;
+
+ for (var zsj = 0; zsj < series[w.globals.maxValsInArrayIndex].length; zsj++) {
+ total += series[zs][zsj];
+ }
+
+ if (total === 0) {
+ this.barCtx.zeroSerieses.push(zs);
+ }
+ }
+ }
+ }, {
+ key: "getXForValue",
+ value: function getXForValue(value, zeroW) {
+ var zeroPositionForNull = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
+ var xForVal = zeroPositionForNull ? zeroW : null;
+
+ if (typeof value !== 'undefined' && value !== null) {
+ xForVal = zeroW + value / this.barCtx.invertedYRatio - (this.barCtx.isReversed ? value / this.barCtx.invertedYRatio : 0) * 2;
+ }
+
+ return xForVal;
+ }
+ }, {
+ key: "getYForValue",
+ value: function getYForValue(value, zeroH, translationsIndex) {
+ var zeroPositionForNull = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
+ var yForVal = zeroPositionForNull ? zeroH : null;
+
+ if (typeof value !== 'undefined' && value !== null) {
+ yForVal = zeroH - value / this.barCtx.yRatio[translationsIndex] + (this.barCtx.isReversed ? value / this.barCtx.yRatio[translationsIndex] : 0) * 2;
+ }
+
+ return yForVal;
+ }
+ }, {
+ key: "getGoalValues",
+ value: function getGoalValues(type, zeroW, zeroH, i, j, translationsIndex) {
+ var _this = this;
+
+ var w = this.w;
+ var goals = [];
+
+ var pushGoal = function pushGoal(value, attrs) {
+ var _goals$push;
+
+ goals.push((_goals$push = {}, _defineProperty(_goals$push, type, type === 'x' ? _this.getXForValue(value, zeroW, false) : _this.getYForValue(value, zeroH, translationsIndex, false)), _defineProperty(_goals$push, "attrs", attrs), _goals$push));
+ };
+
+ if (w.globals.seriesGoals[i] && w.globals.seriesGoals[i][j] && Array.isArray(w.globals.seriesGoals[i][j])) {
+ w.globals.seriesGoals[i][j].forEach(function (goal) {
+ pushGoal(goal.value, goal);
+ });
+ }
+
+ if (this.barCtx.barOptions.isDumbbell && w.globals.seriesRange.length) {
+ var colors = this.barCtx.barOptions.dumbbellColors ? this.barCtx.barOptions.dumbbellColors : w.globals.colors;
+ var commonAttrs = {
+ strokeHeight: type === 'x' ? 0 : w.globals.markers.size[i],
+ strokeWidth: type === 'x' ? w.globals.markers.size[i] : 0,
+ strokeDashArray: 0,
+ strokeLineCap: 'round',
+ strokeColor: Array.isArray(colors[i]) ? colors[i][0] : colors[i]
+ };
+ pushGoal(w.globals.seriesRangeStart[i][j], commonAttrs);
+ pushGoal(w.globals.seriesRangeEnd[i][j], _objectSpread2(_objectSpread2({}, commonAttrs), {}, {
+ strokeColor: Array.isArray(colors[i]) ? colors[i][1] : colors[i]
+ }));
+ }
+
+ return goals;
+ }
+ }, {
+ key: "drawGoalLine",
+ value: function drawGoalLine(_ref5) {
+ var barXPosition = _ref5.barXPosition,
+ barYPosition = _ref5.barYPosition,
+ goalX = _ref5.goalX,
+ goalY = _ref5.goalY,
+ barWidth = _ref5.barWidth,
+ barHeight = _ref5.barHeight;
+ var graphics = new Graphics(this.barCtx.ctx);
+ var lineGroup = graphics.group({
+ className: 'apexcharts-bar-goals-groups'
+ });
+ lineGroup.node.classList.add('apexcharts-element-hidden');
+ this.barCtx.w.globals.delayedElements.push({
+ el: lineGroup.node
+ });
+ lineGroup.attr('clip-path', "url(#gridRectMarkerMask".concat(this.barCtx.w.globals.cuid, ")"));
+ var line = null;
+
+ if (this.barCtx.isHorizontal) {
+ if (Array.isArray(goalX)) {
+ goalX.forEach(function (goal) {
+ // Need a tiny margin of 1 each side so goals don't disappear at extremeties
+ if (goal.x >= -1 && goal.x <= graphics.w.globals.gridWidth + 1) {
+ var sHeight = typeof goal.attrs.strokeHeight !== 'undefined' ? goal.attrs.strokeHeight : barHeight / 2;
+ var y = barYPosition + sHeight + barHeight / 2;
+ line = graphics.drawLine(goal.x, y - sHeight * 2, goal.x, y, goal.attrs.strokeColor ? goal.attrs.strokeColor : undefined, goal.attrs.strokeDashArray, goal.attrs.strokeWidth ? goal.attrs.strokeWidth : 2, goal.attrs.strokeLineCap);
+ lineGroup.add(line);
+ }
+ });
+ }
+ } else {
+ if (Array.isArray(goalY)) {
+ goalY.forEach(function (goal) {
+ // Need a tiny margin of 1 each side so goals don't disappear at extremeties
+ if (goal.y >= -1 && goal.y <= graphics.w.globals.gridHeight + 1) {
+ var sWidth = typeof goal.attrs.strokeWidth !== 'undefined' ? goal.attrs.strokeWidth : barWidth / 2;
+ var x = barXPosition + sWidth + barWidth / 2;
+ line = graphics.drawLine(x - sWidth * 2, goal.y, x, goal.y, goal.attrs.strokeColor ? goal.attrs.strokeColor : undefined, goal.attrs.strokeDashArray, goal.attrs.strokeHeight ? goal.attrs.strokeHeight : 2, goal.attrs.strokeLineCap);
+ lineGroup.add(line);
+ }
+ });
+ }
+ }
+
+ return lineGroup;
+ }
+ }, {
+ key: "drawBarShadow",
+ value: function drawBarShadow(_ref6) {
+ var prevPaths = _ref6.prevPaths,
+ currPaths = _ref6.currPaths,
+ color = _ref6.color;
+ var w = this.w;
+ var prevX2 = prevPaths.x,
+ prevX1 = prevPaths.x1,
+ prevY1 = prevPaths.barYPosition;
+ var currX2 = currPaths.x,
+ currX1 = currPaths.x1,
+ currY1 = currPaths.barYPosition;
+ var prevY2 = prevY1 + currPaths.barHeight;
+ var graphics = new Graphics(this.barCtx.ctx);
+ var utils = new Utils$1();
+ var shadowPath = graphics.move(prevX1, prevY2) + graphics.line(prevX2, prevY2) + graphics.line(currX2, currY1) + graphics.line(currX1, currY1) + graphics.line(prevX1, prevY2) + (w.config.plotOptions.bar.borderRadiusApplication === 'around' ? ' Z' : ' z');
+ return graphics.drawPath({
+ d: shadowPath,
+ fill: utils.shadeColor(0.5, Utils$1.rgb2hex(color)),
+ stroke: 'none',
+ strokeWidth: 0,
+ fillOpacity: 1,
+ classes: 'apexcharts-bar-shadows'
+ });
+ }
+ }, {
+ key: "getZeroValueEncounters",
+ value: function getZeroValueEncounters(_ref7) {
+ var i = _ref7.i,
+ j = _ref7.j;
+ var w = this.w;
+ var nonZeroColumns = 0;
+ var zeroEncounters = 0;
+ w.globals.seriesPercent.forEach(function (_s, _si) {
+ if (_s[j]) {
+ nonZeroColumns++;
+ }
+
+ if (_si < i && _s[j] === 0) {
+ zeroEncounters++;
+ }
+ });
+ return {
+ nonZeroColumns: nonZeroColumns,
+ zeroEncounters: zeroEncounters
+ };
+ }
+ }]);
+
+ return Helpers;
+ }();
+
+ /**
+ * ApexCharts Bar Class responsible for drawing both Columns and Bars.
+ *
+ * @module Bar
+ **/
+
+ var Bar = /*#__PURE__*/function () {
+ function Bar(ctx, xyRatios) {
+ _classCallCheck(this, Bar);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ var w = this.w;
+ this.barOptions = w.config.plotOptions.bar;
+ this.isHorizontal = this.barOptions.horizontal;
+ this.strokeWidth = w.config.stroke.width;
+ this.isNullValue = false;
+ this.isRangeBar = w.globals.seriesRange.length && this.isHorizontal;
+ this.isVerticalGroupedRangeBar = !w.globals.isBarHorizontal && w.globals.seriesRange.length && w.config.plotOptions.bar.rangeBarGroupRows;
+ this.isFunnel = this.barOptions.isFunnel;
+ this.xyRatios = xyRatios;
+
+ if (this.xyRatios !== null) {
+ this.xRatio = xyRatios.xRatio;
+ this.yRatio = xyRatios.yRatio;
+ this.invertedXRatio = xyRatios.invertedXRatio;
+ this.invertedYRatio = xyRatios.invertedYRatio;
+ this.baseLineY = xyRatios.baseLineY;
+ this.baseLineInvertedY = xyRatios.baseLineInvertedY;
+ }
+
+ this.yaxisIndex = 0;
+ this.translationsIndex = 0;
+ this.seriesLen = 0;
+ this.pathArr = [];
+ var ser = new Series(this.ctx);
+ this.lastActiveBarSerieIndex = ser.getActiveConfigSeriesIndex('desc', ['bar', 'column']);
+ var barSeriesIndices = ser.getBarSeriesIndices();
+ var coreUtils = new CoreUtils(this.ctx);
+ this.stackedSeriesTotals = coreUtils.getStackedSeriesTotals(this.w.config.series.map(function (s, i) {
+ return barSeriesIndices.indexOf(i) === -1 ? i : -1;
+ }).filter(function (s) {
+ return s !== -1;
+ }));
+ this.barHelpers = new Helpers$1(this);
+ }
+ /** primary draw method which is called on bar object
+ * @memberof Bar
+ * @param {array} series - user supplied series values
+ * @param {int} seriesIndex - the index by which series will be drawn on the svg
+ * @return {node} element which is supplied to parent chart draw method for appending
+ **/
+
+
+ _createClass(Bar, [{
+ key: "draw",
+ value: function draw(series, seriesIndex) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var coreUtils = new CoreUtils(this.ctx, w);
+ series = coreUtils.getLogSeries(series);
+ this.series = series;
+ this.yRatio = coreUtils.getLogYRatios(this.yRatio);
+ this.barHelpers.initVariables(series);
+ var ret = graphics.group({
+ class: 'apexcharts-bar-series apexcharts-plot-series'
+ });
+
+ if (w.config.dataLabels.enabled) {
+ if (this.totalItems > this.barOptions.dataLabels.maxItems) {
+ console.warn('WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering - ApexCharts');
+ }
+ }
+
+ for (var i = 0, bc = 0; i < series.length; i++, bc++) {
+ var x = void 0,
+ y = void 0,
+ xDivision = void 0,
+ // xDivision is the GRIDWIDTH divided by number of datapoints (columns)
+ yDivision = void 0,
+ // yDivision is the GRIDHEIGHT divided by number of datapoints (bars)
+ zeroH = void 0,
+ // zeroH is the baseline where 0 meets y axis
+ zeroW = void 0; // zeroW is the baseline where 0 meets x axis
+
+ var yArrj = []; // hold y values of current iterating series
+
+ var xArrj = []; // hold x values of current iterating series
+
+ var realIndex = w.globals.comboCharts ? seriesIndex[i] : i; // el to which series will be drawn
+
+ var elSeries = graphics.group({
+ class: "apexcharts-series",
+ rel: i + 1,
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[realIndex]),
+ 'data:realIndex': realIndex
+ });
+ this.ctx.series.addCollapsedClassToSeries(elSeries, realIndex);
+
+ if (series[i].length > 0) {
+ this.visibleI = this.visibleI + 1;
+ }
+
+ var barHeight = 0;
+ var barWidth = 0;
+
+ if (this.yRatio.length > 1) {
+ this.yaxisIndex = w.globals.seriesYAxisReverseMap[realIndex];
+ this.translationsIndex = realIndex;
+ }
+
+ var translationsIndex = this.translationsIndex;
+ this.isReversed = w.config.yaxis[this.yaxisIndex] && w.config.yaxis[this.yaxisIndex].reversed;
+ var initPositions = this.barHelpers.initialPositions();
+ y = initPositions.y;
+ barHeight = initPositions.barHeight;
+ yDivision = initPositions.yDivision;
+ zeroW = initPositions.zeroW;
+ x = initPositions.x;
+ barWidth = initPositions.barWidth;
+ xDivision = initPositions.xDivision;
+ zeroH = initPositions.zeroH;
+
+ if (!this.horizontal) {
+ xArrj.push(x + barWidth / 2);
+ } // eldatalabels
+
+
+ var elDataLabelsWrap = graphics.group({
+ class: 'apexcharts-datalabels',
+ 'data:realIndex': realIndex
+ });
+ w.globals.delayedElements.push({
+ el: elDataLabelsWrap.node
+ });
+ elDataLabelsWrap.node.classList.add('apexcharts-element-hidden');
+ var elGoalsMarkers = graphics.group({
+ class: 'apexcharts-bar-goals-markers'
+ });
+ var elBarShadows = graphics.group({
+ class: 'apexcharts-bar-shadows'
+ });
+ w.globals.delayedElements.push({
+ el: elBarShadows.node
+ });
+ elBarShadows.node.classList.add('apexcharts-element-hidden');
+
+ for (var j = 0; j < series[i].length; j++) {
+ var strokeWidth = this.barHelpers.getStrokeWidth(i, j, realIndex);
+ var paths = null;
+ var pathsParams = {
+ indexes: {
+ i: i,
+ j: j,
+ realIndex: realIndex,
+ translationsIndex: translationsIndex,
+ bc: bc
+ },
+ x: x,
+ y: y,
+ strokeWidth: strokeWidth,
+ elSeries: elSeries
+ };
+
+ if (this.isHorizontal) {
+ paths = this.drawBarPaths(_objectSpread2(_objectSpread2({}, pathsParams), {}, {
+ barHeight: barHeight,
+ zeroW: zeroW,
+ yDivision: yDivision
+ }));
+ barWidth = this.series[i][j] / this.invertedYRatio;
+ } else {
+ paths = this.drawColumnPaths(_objectSpread2(_objectSpread2({}, pathsParams), {}, {
+ xDivision: xDivision,
+ barWidth: barWidth,
+ zeroH: zeroH
+ }));
+ barHeight = this.series[i][j] / this.yRatio[translationsIndex];
+ }
+
+ var pathFill = this.barHelpers.getPathFillColor(series, i, j, realIndex);
+
+ if (this.isFunnel && this.barOptions.isFunnel3d && this.pathArr.length && j > 0) {
+ var barShadow = this.barHelpers.drawBarShadow({
+ color: typeof pathFill === 'string' && (pathFill === null || pathFill === void 0 ? void 0 : pathFill.indexOf('url')) === -1 ? pathFill : Utils$1.hexToRgba(w.globals.colors[i]),
+ prevPaths: this.pathArr[this.pathArr.length - 1],
+ currPaths: paths
+ });
+
+ if (barShadow) {
+ elBarShadows.add(barShadow);
+ }
+ }
+
+ this.pathArr.push(paths);
+ var barGoalLine = this.barHelpers.drawGoalLine({
+ barXPosition: paths.barXPosition,
+ barYPosition: paths.barYPosition,
+ goalX: paths.goalX,
+ goalY: paths.goalY,
+ barHeight: barHeight,
+ barWidth: barWidth
+ });
+
+ if (barGoalLine) {
+ elGoalsMarkers.add(barGoalLine);
+ }
+
+ y = paths.y;
+ x = paths.x; // push current X
+
+ if (j > 0) {
+ xArrj.push(x + barWidth / 2);
+ }
+
+ yArrj.push(y);
+ this.renderSeries({
+ realIndex: realIndex,
+ pathFill: pathFill,
+ j: j,
+ i: i,
+ pathFrom: paths.pathFrom,
+ pathTo: paths.pathTo,
+ strokeWidth: strokeWidth,
+ elSeries: elSeries,
+ x: x,
+ y: y,
+ series: series,
+ barHeight: paths.barHeight ? paths.barHeight : barHeight,
+ barWidth: paths.barWidth ? paths.barWidth : barWidth,
+ elDataLabelsWrap: elDataLabelsWrap,
+ elGoalsMarkers: elGoalsMarkers,
+ elBarShadows: elBarShadows,
+ visibleSeries: this.visibleI,
+ type: 'bar'
+ });
+ } // push all x val arrays into main xArr
+
+
+ w.globals.seriesXvalues[realIndex] = xArrj;
+ w.globals.seriesYvalues[realIndex] = yArrj;
+ ret.add(elSeries);
+ }
+
+ return ret;
+ }
+ }, {
+ key: "renderSeries",
+ value: function renderSeries(_ref) {
+ var realIndex = _ref.realIndex,
+ pathFill = _ref.pathFill,
+ lineFill = _ref.lineFill,
+ j = _ref.j,
+ i = _ref.i,
+ groupIndex = _ref.groupIndex,
+ pathFrom = _ref.pathFrom,
+ pathTo = _ref.pathTo,
+ strokeWidth = _ref.strokeWidth,
+ elSeries = _ref.elSeries,
+ x = _ref.x,
+ y = _ref.y,
+ y1 = _ref.y1,
+ y2 = _ref.y2,
+ series = _ref.series,
+ barHeight = _ref.barHeight,
+ barWidth = _ref.barWidth,
+ barXPosition = _ref.barXPosition,
+ barYPosition = _ref.barYPosition,
+ elDataLabelsWrap = _ref.elDataLabelsWrap,
+ elGoalsMarkers = _ref.elGoalsMarkers,
+ elBarShadows = _ref.elBarShadows,
+ visibleSeries = _ref.visibleSeries,
+ type = _ref.type;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+
+ if (!lineFill) {
+ /* fix apexcharts#341 */
+ lineFill = this.barOptions.distributed ? w.globals.stroke.colors[j] : w.globals.stroke.colors[realIndex];
+ }
+
+ if (w.config.series[i].data[j] && w.config.series[i].data[j].strokeColor) {
+ lineFill = w.config.series[i].data[j].strokeColor;
+ }
+
+ if (this.isNullValue) {
+ pathFill = 'none';
+ }
+
+ var delay = j / w.config.chart.animations.animateGradually.delay * (w.config.chart.animations.speed / w.globals.dataPoints) / 2.4;
+ var renderedPath = graphics.renderPaths({
+ i: i,
+ j: j,
+ realIndex: realIndex,
+ pathFrom: pathFrom,
+ pathTo: pathTo,
+ stroke: lineFill,
+ strokeWidth: strokeWidth,
+ strokeLineCap: w.config.stroke.lineCap,
+ fill: pathFill,
+ animationDelay: delay,
+ initialSpeed: w.config.chart.animations.speed,
+ dataChangeSpeed: w.config.chart.animations.dynamicAnimation.speed,
+ className: "apexcharts-".concat(type, "-area")
+ });
+ renderedPath.attr('clip-path', "url(#gridRectMask".concat(w.globals.cuid, ")"));
+ var forecast = w.config.forecastDataPoints;
+
+ if (forecast.count > 0) {
+ if (j >= w.globals.dataPoints - forecast.count) {
+ renderedPath.node.setAttribute('stroke-dasharray', forecast.dashArray);
+ renderedPath.node.setAttribute('stroke-width', forecast.strokeWidth);
+ renderedPath.node.setAttribute('fill-opacity', forecast.fillOpacity);
+ }
+ }
+
+ if (typeof y1 !== 'undefined' && typeof y2 !== 'undefined') {
+ renderedPath.attr('data-range-y1', y1);
+ renderedPath.attr('data-range-y2', y2);
+ }
+
+ var filters = new Filters(this.ctx);
+ filters.setSelectionFilter(renderedPath, realIndex, j);
+ elSeries.add(renderedPath);
+ var barDataLabels = new BarDataLabels(this);
+ var dataLabelsObj = barDataLabels.handleBarDataLabels({
+ x: x,
+ y: y,
+ y1: y1,
+ y2: y2,
+ i: i,
+ j: j,
+ series: series,
+ realIndex: realIndex,
+ groupIndex: groupIndex,
+ barHeight: barHeight,
+ barWidth: barWidth,
+ barXPosition: barXPosition,
+ barYPosition: barYPosition,
+ renderedPath: renderedPath,
+ visibleSeries: visibleSeries
+ });
+
+ if (dataLabelsObj.dataLabels !== null) {
+ elDataLabelsWrap.add(dataLabelsObj.dataLabels);
+ }
+
+ if (dataLabelsObj.totalDataLabels) {
+ elDataLabelsWrap.add(dataLabelsObj.totalDataLabels);
+ }
+
+ elSeries.add(elDataLabelsWrap);
+
+ if (elGoalsMarkers) {
+ elSeries.add(elGoalsMarkers);
+ }
+
+ if (elBarShadows) {
+ elSeries.add(elBarShadows);
+ }
+
+ return elSeries;
+ }
+ }, {
+ key: "drawBarPaths",
+ value: function drawBarPaths(_ref2) {
+ var indexes = _ref2.indexes,
+ barHeight = _ref2.barHeight,
+ strokeWidth = _ref2.strokeWidth,
+ zeroW = _ref2.zeroW,
+ x = _ref2.x,
+ y = _ref2.y,
+ yDivision = _ref2.yDivision,
+ elSeries = _ref2.elSeries;
+ var w = this.w;
+ var i = indexes.i;
+ var j = indexes.j;
+ var barYPosition;
+
+ if (w.globals.isXNumeric) {
+ y = (w.globals.seriesX[i][j] - w.globals.minX) / this.invertedXRatio - barHeight;
+ barYPosition = y + barHeight * this.visibleI;
+ } else {
+ if (w.config.plotOptions.bar.hideZeroBarsWhenGrouped) {
+ var nonZeroColumns = 0;
+ var zeroEncounters = 0;
+ w.globals.seriesPercent.forEach(function (_s, _si) {
+ if (_s[j]) {
+ nonZeroColumns++;
+ }
+
+ if (_si < i && _s[j] === 0) {
+ zeroEncounters++;
+ }
+ });
+
+ if (nonZeroColumns > 0) {
+ barHeight = this.seriesLen * barHeight / nonZeroColumns;
+ }
+
+ barYPosition = y + barHeight * this.visibleI;
+ barYPosition -= barHeight * zeroEncounters;
+ } else {
+ barYPosition = y + barHeight * this.visibleI;
+ }
+ }
+
+ if (this.isFunnel) {
+ zeroW = zeroW - (this.barHelpers.getXForValue(this.series[i][j], zeroW) - zeroW) / 2;
+ }
+
+ x = this.barHelpers.getXForValue(this.series[i][j], zeroW);
+ var paths = this.barHelpers.getBarpaths({
+ barYPosition: barYPosition,
+ barHeight: barHeight,
+ x1: zeroW,
+ x2: x,
+ strokeWidth: strokeWidth,
+ series: this.series,
+ realIndex: indexes.realIndex,
+ i: i,
+ j: j,
+ w: w
+ });
+
+ if (!w.globals.isXNumeric) {
+ y = y + yDivision;
+ }
+
+ this.barHelpers.barBackground({
+ j: j,
+ i: i,
+ y1: barYPosition - barHeight * this.visibleI,
+ y2: barHeight * this.seriesLen,
+ elSeries: elSeries
+ });
+ return {
+ pathTo: paths.pathTo,
+ pathFrom: paths.pathFrom,
+ x1: zeroW,
+ x: x,
+ y: y,
+ goalX: this.barHelpers.getGoalValues('x', zeroW, null, i, j),
+ barYPosition: barYPosition,
+ barHeight: barHeight
+ };
+ }
+ }, {
+ key: "drawColumnPaths",
+ value: function drawColumnPaths(_ref3) {
+ var indexes = _ref3.indexes,
+ x = _ref3.x,
+ y = _ref3.y,
+ xDivision = _ref3.xDivision,
+ barWidth = _ref3.barWidth,
+ zeroH = _ref3.zeroH,
+ strokeWidth = _ref3.strokeWidth,
+ elSeries = _ref3.elSeries;
+ var w = this.w;
+ var realIndex = indexes.realIndex;
+ var translationsIndex = indexes.translationsIndex;
+ var i = indexes.i;
+ var j = indexes.j;
+ var bc = indexes.bc;
+ var barXPosition;
+
+ if (w.globals.isXNumeric) {
+ var xForNumericX = this.getBarXForNumericXAxis({
+ x: x,
+ j: j,
+ realIndex: realIndex,
+ barWidth: barWidth
+ });
+ x = xForNumericX.x;
+ barXPosition = xForNumericX.barXPosition;
+ } else {
+ if (w.config.plotOptions.bar.hideZeroBarsWhenGrouped) {
+ var _this$barHelpers$getZ = this.barHelpers.getZeroValueEncounters({
+ i: i,
+ j: j
+ }),
+ nonZeroColumns = _this$barHelpers$getZ.nonZeroColumns,
+ zeroEncounters = _this$barHelpers$getZ.zeroEncounters;
+
+ if (nonZeroColumns > 0) {
+ barWidth = this.seriesLen * barWidth / nonZeroColumns;
+ }
+
+ barXPosition = x + barWidth * this.visibleI;
+ barXPosition -= barWidth * zeroEncounters;
+ } else {
+ barXPosition = x + barWidth * this.visibleI;
+ }
+ }
+
+ y = this.barHelpers.getYForValue(this.series[i][j], zeroH, translationsIndex);
+ var paths = this.barHelpers.getColumnPaths({
+ barXPosition: barXPosition,
+ barWidth: barWidth,
+ y1: zeroH,
+ y2: y,
+ strokeWidth: strokeWidth,
+ series: this.series,
+ realIndex: realIndex,
+ i: i,
+ j: j,
+ w: w
+ });
+
+ if (!w.globals.isXNumeric) {
+ x = x + xDivision;
+ }
+
+ this.barHelpers.barBackground({
+ bc: bc,
+ j: j,
+ i: i,
+ x1: barXPosition - strokeWidth / 2 - barWidth * this.visibleI,
+ x2: barWidth * this.seriesLen + strokeWidth / 2,
+ elSeries: elSeries
+ });
+ return {
+ pathTo: paths.pathTo,
+ pathFrom: paths.pathFrom,
+ x: x,
+ y: y,
+ goalY: this.barHelpers.getGoalValues('y', null, zeroH, i, j, translationsIndex),
+ barXPosition: barXPosition,
+ barWidth: barWidth
+ };
+ }
+ }, {
+ key: "getBarXForNumericXAxis",
+ value: function getBarXForNumericXAxis(_ref4) {
+ var x = _ref4.x,
+ barWidth = _ref4.barWidth,
+ realIndex = _ref4.realIndex,
+ j = _ref4.j;
+ var w = this.w;
+ var sxI = realIndex;
+
+ if (!w.globals.seriesX[realIndex].length) {
+ sxI = w.globals.maxValsInArrayIndex;
+ }
+
+ if (w.globals.seriesX[sxI][j]) {
+ x = (w.globals.seriesX[sxI][j] - w.globals.minX) / this.xRatio - barWidth * this.seriesLen / 2;
+ }
+
+ return {
+ barXPosition: x + barWidth * this.visibleI,
+ x: x
+ };
+ }
+ /** getPreviousPath is a common function for bars/columns which is used to get previous paths when data changes.
+ * @memberof Bar
+ * @param {int} realIndex - current iterating i
+ * @param {int} j - current iterating series's j index
+ * @return {string} pathFrom is the string which will be appended in animations
+ **/
+
+ }, {
+ key: "getPreviousPath",
+ value: function getPreviousPath(realIndex, j) {
+ var w = this.w;
+ var pathFrom;
+
+ for (var pp = 0; pp < w.globals.previousPaths.length; pp++) {
+ var gpp = w.globals.previousPaths[pp];
+
+ if (gpp.paths && gpp.paths.length > 0 && parseInt(gpp.realIndex, 10) === parseInt(realIndex, 10)) {
+ if (typeof w.globals.previousPaths[pp].paths[j] !== 'undefined') {
+ pathFrom = w.globals.previousPaths[pp].paths[j].d;
+ }
+ }
+ }
+
+ return pathFrom;
+ }
+ }]);
+
+ return Bar;
+ }();
+
+ /**
+ * ApexCharts BarStacked Class responsible for drawing both Stacked Columns and Bars.
+ *
+ * @module BarStacked
+ * The whole calculation for stacked bar/column is different from normal bar/column,
+ * hence it makes sense to derive a new class for it extending most of the props of Parent Bar
+ **/
+
+ var BarStacked = /*#__PURE__*/function (_Bar) {
+ _inherits(BarStacked, _Bar);
+
+ var _super = _createSuper(BarStacked);
+
+ function BarStacked() {
+ _classCallCheck(this, BarStacked);
+
+ return _super.apply(this, arguments);
+ }
+
+ _createClass(BarStacked, [{
+ key: "draw",
+ value: function draw(series, seriesIndex) {
+ var _this = this;
+
+ var w = this.w;
+ this.graphics = new Graphics(this.ctx);
+ this.bar = new Bar(this.ctx, this.xyRatios);
+ var coreUtils = new CoreUtils(this.ctx, w);
+ series = coreUtils.getLogSeries(series);
+ this.yRatio = coreUtils.getLogYRatios(this.yRatio);
+ this.barHelpers.initVariables(series);
+
+ if (w.config.chart.stackType === '100%') {
+ series = w.globals.seriesPercent.slice();
+ }
+
+ this.series = series;
+ this.barHelpers.initializeStackedPrevVars(this);
+ var ret = this.graphics.group({
+ class: 'apexcharts-bar-series apexcharts-plot-series'
+ });
+ var x = 0;
+ var y = 0;
+
+ var _loop = function _loop(i, bc) {
+ var xDivision = void 0; // xDivision is the GRIDWIDTH divided by number of datapoints (columns)
+
+ var yDivision = void 0; // yDivision is the GRIDHEIGHT divided by number of datapoints (bars)
+
+ var zeroH = void 0; // zeroH is the baseline where 0 meets y axis
+
+ var zeroW = void 0; // zeroW is the baseline where 0 meets x axis
+
+ var groupIndex = -1; // groupIndex is the index of group buckets (group1, group2, ...)
+
+ _this.groupCtx = _this;
+ w.globals.seriesGroups.forEach(function (group, gIndex) {
+ if (group.indexOf(w.config.series[i].name) > -1) {
+ groupIndex = gIndex;
+ }
+ });
+
+ if (groupIndex !== -1) {
+ _this.groupCtx = _this[w.globals.seriesGroups[groupIndex]];
+ }
+
+ var xArrValues = [];
+ var yArrValues = [];
+ var realIndex = w.globals.comboCharts ? seriesIndex[i] : i;
+ var translationsIndex = 0;
+
+ if (_this.yRatio.length > 1) {
+ _this.yaxisIndex = w.globals.seriesYAxisReverseMap[realIndex][0];
+ translationsIndex = realIndex;
+ }
+
+ _this.isReversed = w.config.yaxis[_this.yaxisIndex] && w.config.yaxis[_this.yaxisIndex].reversed; // el to which series will be drawn
+
+ var elSeries = _this.graphics.group({
+ class: "apexcharts-series",
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[realIndex]),
+ rel: i + 1,
+ 'data:realIndex': realIndex
+ });
+
+ _this.ctx.series.addCollapsedClassToSeries(elSeries, realIndex); // eldatalabels
+
+
+ var elDataLabelsWrap = _this.graphics.group({
+ class: 'apexcharts-datalabels',
+ 'data:realIndex': realIndex
+ });
+
+ var elGoalsMarkers = _this.graphics.group({
+ class: 'apexcharts-bar-goals-markers'
+ });
+
+ var barHeight = 0;
+ var barWidth = 0;
+
+ var initPositions = _this.initialPositions(x, y, xDivision, yDivision, zeroH, zeroW, translationsIndex);
+
+ y = initPositions.y;
+ barHeight = initPositions.barHeight;
+ yDivision = initPositions.yDivision;
+ zeroW = initPositions.zeroW;
+ x = initPositions.x;
+ barWidth = initPositions.barWidth;
+ xDivision = initPositions.xDivision;
+ zeroH = initPositions.zeroH;
+ w.globals.barHeight = barHeight;
+ w.globals.barWidth = barWidth;
+
+ _this.barHelpers.initializeStackedXYVars(_this); // where all stack bar disappear after collapsing the first series
+
+
+ if (_this.groupCtx.prevY.length === 1 && _this.groupCtx.prevY[0].every(function (val) {
+ return isNaN(val);
+ })) {
+ _this.groupCtx.prevY[0] = _this.groupCtx.prevY[0].map(function (val) {
+ return zeroH;
+ });
+ _this.groupCtx.prevYF[0] = _this.groupCtx.prevYF[0].map(function (val) {
+ return 0;
+ });
+ }
+
+ for (var j = 0; j < w.globals.dataPoints; j++) {
+ var strokeWidth = _this.barHelpers.getStrokeWidth(i, j, realIndex);
+
+ var commonPathOpts = {
+ indexes: {
+ i: i,
+ j: j,
+ realIndex: realIndex,
+ translationsIndex: translationsIndex,
+ bc: bc
+ },
+ strokeWidth: strokeWidth,
+ x: x,
+ y: y,
+ elSeries: elSeries,
+ groupIndex: groupIndex,
+ seriesGroup: w.globals.seriesGroups[groupIndex]
+ };
+ var paths = null;
+
+ if (_this.isHorizontal) {
+ paths = _this.drawStackedBarPaths(_objectSpread2(_objectSpread2({}, commonPathOpts), {}, {
+ zeroW: zeroW,
+ barHeight: barHeight,
+ yDivision: yDivision
+ }));
+ barWidth = _this.series[i][j] / _this.invertedYRatio;
+ } else {
+ paths = _this.drawStackedColumnPaths(_objectSpread2(_objectSpread2({}, commonPathOpts), {}, {
+ xDivision: xDivision,
+ barWidth: barWidth,
+ zeroH: zeroH
+ }));
+ barHeight = _this.series[i][j] / _this.yRatio[translationsIndex];
+ }
+
+ var barGoalLine = _this.barHelpers.drawGoalLine({
+ barXPosition: paths.barXPosition,
+ barYPosition: paths.barYPosition,
+ goalX: paths.goalX,
+ goalY: paths.goalY,
+ barHeight: barHeight,
+ barWidth: barWidth
+ });
+
+ if (barGoalLine) {
+ elGoalsMarkers.add(barGoalLine);
+ }
+
+ y = paths.y;
+ x = paths.x;
+ xArrValues.push(x);
+ yArrValues.push(y);
+
+ var pathFill = _this.barHelpers.getPathFillColor(series, i, j, realIndex);
+
+ elSeries = _this.renderSeries({
+ realIndex: realIndex,
+ pathFill: pathFill,
+ j: j,
+ i: i,
+ groupIndex: groupIndex,
+ pathFrom: paths.pathFrom,
+ pathTo: paths.pathTo,
+ strokeWidth: strokeWidth,
+ elSeries: elSeries,
+ x: x,
+ y: y,
+ series: series,
+ barHeight: barHeight,
+ barWidth: barWidth,
+ elDataLabelsWrap: elDataLabelsWrap,
+ elGoalsMarkers: elGoalsMarkers,
+ type: 'bar',
+ visibleSeries: 0
+ });
+ } // push all x val arrays into main xArr
+
+
+ w.globals.seriesXvalues[realIndex] = xArrValues;
+ w.globals.seriesYvalues[realIndex] = yArrValues; // push all current y values array to main PrevY Array
+
+ _this.groupCtx.prevY.push(_this.groupCtx.yArrj);
+
+ _this.groupCtx.prevYF.push(_this.groupCtx.yArrjF);
+
+ _this.groupCtx.prevYVal.push(_this.groupCtx.yArrjVal);
+
+ _this.groupCtx.prevX.push(_this.groupCtx.xArrj);
+
+ _this.groupCtx.prevXF.push(_this.groupCtx.xArrjF);
+
+ _this.groupCtx.prevXVal.push(_this.groupCtx.xArrjVal);
+
+ ret.add(elSeries);
+ };
+
+ for (var i = 0, bc = 0; i < series.length; i++, bc++) {
+ _loop(i, bc);
+ }
+
+ return ret;
+ }
+ }, {
+ key: "initialPositions",
+ value: function initialPositions(x, y, xDivision, yDivision, zeroH, zeroW, translationsIndex) {
+ var _w$globals$seriesGrou, _w$globals$seriesGrou2;
+
+ var w = this.w;
+ var barHeight, barWidth;
+
+ if (this.isHorizontal) {
+ // height divided into equal parts
+ yDivision = w.globals.gridHeight / w.globals.dataPoints;
+ barHeight = yDivision;
+ barHeight = barHeight * parseInt(w.config.plotOptions.bar.barHeight, 10) / 100;
+
+ if (String(w.config.plotOptions.bar.barHeight).indexOf('%') === -1) {
+ barHeight = parseInt(w.config.plotOptions.bar.barHeight, 10);
+ }
+
+ zeroW = this.baseLineInvertedY + w.globals.padHorizontal + (this.isReversed ? w.globals.gridWidth : 0) - (this.isReversed ? this.baseLineInvertedY * 2 : 0); // initial y position is half of barHeight * half of number of Bars
+
+ y = (yDivision - barHeight) / 2;
+ } else {
+ // width divided into equal parts
+ xDivision = w.globals.gridWidth / w.globals.dataPoints;
+ barWidth = xDivision;
+
+ if (w.globals.isXNumeric && w.globals.dataPoints > 1) {
+ // the check (w.globals.dataPoints > 1) fixes apexcharts.js #1617
+ xDivision = w.globals.minXDiff / this.xRatio;
+ barWidth = xDivision * parseInt(this.barOptions.columnWidth, 10) / 100;
+ } else {
+ barWidth = barWidth * parseInt(w.config.plotOptions.bar.columnWidth, 10) / 100;
+ }
+
+ if (String(w.config.plotOptions.bar.columnWidth).indexOf('%') === -1) {
+ barWidth = parseInt(w.config.plotOptions.bar.columnWidth, 10);
+ }
+
+ zeroH = w.globals.gridHeight - this.baseLineY[translationsIndex] - (this.isReversed ? w.globals.gridHeight : 0) + (this.isReversed ? this.baseLineY[translationsIndex] * 2 : 0); // initial x position is one third of barWidth
+
+ x = w.globals.padHorizontal + (xDivision - barWidth) / 2;
+ }
+
+ return {
+ x: x,
+ y: y,
+ yDivision: yDivision,
+ xDivision: xDivision,
+ barHeight: (_w$globals$seriesGrou = w.globals.seriesGroups) !== null && _w$globals$seriesGrou !== void 0 && _w$globals$seriesGrou.length ? barHeight / w.globals.seriesGroups.length : barHeight,
+ barWidth: (_w$globals$seriesGrou2 = w.globals.seriesGroups) !== null && _w$globals$seriesGrou2 !== void 0 && _w$globals$seriesGrou2.length ? barWidth / w.globals.seriesGroups.length : barWidth,
+ zeroH: zeroH,
+ zeroW: zeroW
+ };
+ }
+ }, {
+ key: "drawStackedBarPaths",
+ value: function drawStackedBarPaths(_ref) {
+ var indexes = _ref.indexes,
+ barHeight = _ref.barHeight,
+ strokeWidth = _ref.strokeWidth,
+ zeroW = _ref.zeroW,
+ x = _ref.x,
+ y = _ref.y,
+ groupIndex = _ref.groupIndex,
+ seriesGroup = _ref.seriesGroup,
+ yDivision = _ref.yDivision,
+ elSeries = _ref.elSeries;
+ var w = this.w;
+ var barYPosition = y + (groupIndex !== -1 ? groupIndex * barHeight : 0);
+ var barXPosition;
+ var i = indexes.i;
+ var j = indexes.j;
+ var translationsIndex = indexes.translationsIndex;
+ var prevBarW = 0;
+
+ for (var k = 0; k < this.groupCtx.prevXF.length; k++) {
+ prevBarW = prevBarW + this.groupCtx.prevXF[k][j];
+ }
+
+ var gsi = i; // an index to keep track of the series inside a group
+
+ if (seriesGroup) {
+ gsi = seriesGroup.indexOf(w.config.series[i].name);
+ }
+
+ if (gsi > 0) {
+ var bXP = zeroW;
+
+ if (this.groupCtx.prevXVal[gsi - 1][j] < 0) {
+ bXP = this.series[i][j] >= 0 ? this.groupCtx.prevX[gsi - 1][j] + prevBarW - (this.isReversed ? prevBarW : 0) * 2 : this.groupCtx.prevX[gsi - 1][j];
+ } else if (this.groupCtx.prevXVal[gsi - 1][j] >= 0) {
+ bXP = this.series[i][j] >= 0 ? this.groupCtx.prevX[gsi - 1][j] : this.groupCtx.prevX[gsi - 1][j] - prevBarW + (this.isReversed ? prevBarW : 0) * 2;
+ }
+
+ barXPosition = bXP;
+ } else {
+ // the first series will not have prevX values
+ barXPosition = zeroW;
+ }
+
+ if (this.series[i][j] === null) {
+ x = barXPosition;
+ } else {
+ x = barXPosition + this.series[i][j] / this.invertedYRatio - (this.isReversed ? this.series[i][j] / this.invertedYRatio : 0) * 2;
+ }
+
+ var paths = this.barHelpers.getBarpaths({
+ barYPosition: barYPosition,
+ barHeight: barHeight,
+ x1: barXPosition,
+ x2: x,
+ strokeWidth: strokeWidth,
+ series: this.series,
+ realIndex: indexes.realIndex,
+ seriesGroup: seriesGroup,
+ i: i,
+ j: j,
+ w: w
+ });
+ this.barHelpers.barBackground({
+ j: j,
+ i: i,
+ y1: barYPosition,
+ y2: barHeight,
+ elSeries: elSeries
+ });
+ y = y + yDivision;
+ return {
+ pathTo: paths.pathTo,
+ pathFrom: paths.pathFrom,
+ goalX: this.barHelpers.getGoalValues('x', zeroW, null, i, j, translationsIndex),
+ barYPosition: barYPosition,
+ x: x,
+ y: y
+ };
+ }
+ }, {
+ key: "drawStackedColumnPaths",
+ value: function drawStackedColumnPaths(_ref2) {
+ var indexes = _ref2.indexes,
+ x = _ref2.x,
+ y = _ref2.y,
+ xDivision = _ref2.xDivision,
+ barWidth = _ref2.barWidth,
+ zeroH = _ref2.zeroH,
+ groupIndex = _ref2.groupIndex,
+ seriesGroup = _ref2.seriesGroup,
+ elSeries = _ref2.elSeries;
+ var w = this.w;
+ var i = indexes.i;
+ var j = indexes.j;
+ var bc = indexes.bc;
+ var translationsIndex = indexes.translationsIndex;
+
+ if (w.globals.isXNumeric) {
+ var seriesVal = w.globals.seriesX[i][j];
+ if (!seriesVal) seriesVal = 0;
+ x = (seriesVal - w.globals.minX) / this.xRatio - barWidth / 2;
+
+ if (w.globals.seriesGroups.length) {
+ x = (seriesVal - w.globals.minX) / this.xRatio - barWidth / 2 * w.globals.seriesGroups.length;
+ }
+ }
+
+ var barXPosition = x + (groupIndex !== -1 ? groupIndex * barWidth : 0);
+ var barYPosition;
+ var prevBarH = 0;
+
+ for (var k = 0; k < this.groupCtx.prevYF.length; k++) {
+ // fix issue #1215
+ // in case where this.groupCtx.prevYF[k][j] is NaN, use 0 instead
+ prevBarH = prevBarH + (!isNaN(this.groupCtx.prevYF[k][j]) ? this.groupCtx.prevYF[k][j] : 0);
+ }
+
+ var gsi = i; // an index to keep track of the series inside a group
+
+ if (seriesGroup) {
+ gsi = seriesGroup.indexOf(w.config.series[i].name);
+ }
+
+ if (gsi > 0 && !w.globals.isXNumeric || gsi > 0 && w.globals.isXNumeric && w.globals.seriesX[i - 1][j] === w.globals.seriesX[i][j]) {
+ var _this$groupCtx$prevYF;
+
+ var bYP;
+ var prevYValue;
+ var p = Math.min(this.yRatio.length + 1, i + 1);
+
+ if (this.groupCtx.prevY[gsi - 1] !== undefined && this.groupCtx.prevY[gsi - 1].length) {
+ for (var ii = 1; ii < p; ii++) {
+ var _this$groupCtx$prevY;
+
+ if (!isNaN((_this$groupCtx$prevY = this.groupCtx.prevY[gsi - ii]) === null || _this$groupCtx$prevY === void 0 ? void 0 : _this$groupCtx$prevY[j])) {
+ // find the previous available value to give prevYValue
+ prevYValue = this.groupCtx.prevY[gsi - ii][j]; // if found it, break the loop
+
+ break;
+ }
+ }
+ }
+
+ for (var _ii = 1; _ii < p; _ii++) {
+ var _this$groupCtx$prevYV, _this$groupCtx$prevYV2;
+
+ // find the previous available value(non-NaN) to give bYP
+ if (((_this$groupCtx$prevYV = this.groupCtx.prevYVal[gsi - _ii]) === null || _this$groupCtx$prevYV === void 0 ? void 0 : _this$groupCtx$prevYV[j]) < 0) {
+ bYP = this.series[i][j] >= 0 ? prevYValue - prevBarH + (this.isReversed ? prevBarH : 0) * 2 : prevYValue; // found it? break the loop
+
+ break;
+ } else if (((_this$groupCtx$prevYV2 = this.groupCtx.prevYVal[gsi - _ii]) === null || _this$groupCtx$prevYV2 === void 0 ? void 0 : _this$groupCtx$prevYV2[j]) >= 0) {
+ bYP = this.series[i][j] >= 0 ? prevYValue : prevYValue + prevBarH - (this.isReversed ? prevBarH : 0) * 2; // found it? break the loop
+
+ break;
+ }
+ }
+
+ if (typeof bYP === 'undefined') bYP = w.globals.gridHeight; // if this.prevYF[0] is all 0 resulted from line #486
+ // AND every arr starting from the second only contains NaN
+
+ if ((_this$groupCtx$prevYF = this.groupCtx.prevYF[0]) !== null && _this$groupCtx$prevYF !== void 0 && _this$groupCtx$prevYF.every(function (val) {
+ return val === 0;
+ }) && this.groupCtx.prevYF.slice(1, gsi).every(function (arr) {
+ return arr.every(function (val) {
+ return isNaN(val);
+ });
+ })) {
+ barYPosition = zeroH;
+ } else {
+ // Nothing special
+ barYPosition = bYP;
+ }
+ } else {
+ // the first series will not have prevY values, also if the prev index's series X doesn't matches the current index's series X, then start from zero
+ barYPosition = zeroH;
+ }
+
+ if (this.series[i][j]) {
+ y = barYPosition - this.series[i][j] / this.yRatio[translationsIndex] + (this.isReversed ? this.series[i][j] / this.yRatio[translationsIndex] : 0) * 2;
+ } else {
+ // fixes #3610
+ y = barYPosition;
+ }
+
+ var paths = this.barHelpers.getColumnPaths({
+ barXPosition: barXPosition,
+ barWidth: barWidth,
+ y1: barYPosition,
+ y2: y,
+ yRatio: this.yRatio[translationsIndex],
+ strokeWidth: this.strokeWidth,
+ series: this.series,
+ seriesGroup: seriesGroup,
+ realIndex: indexes.realIndex,
+ i: i,
+ j: j,
+ w: w
+ });
+ this.barHelpers.barBackground({
+ bc: bc,
+ j: j,
+ i: i,
+ x1: barXPosition,
+ x2: barWidth,
+ elSeries: elSeries
+ });
+ x = x + xDivision;
+ return {
+ pathTo: paths.pathTo,
+ pathFrom: paths.pathFrom,
+ goalY: this.barHelpers.getGoalValues('y', null, zeroH, i, j),
+ barXPosition: barXPosition,
+ x: w.globals.isXNumeric ? x - xDivision : x,
+ y: y
+ };
+ }
+ }]);
+
+ return BarStacked;
+ }(Bar);
+
+ /**
+ * ApexCharts BoxCandleStick Class responsible for drawing both Stacked Columns and Bars.
+ *
+ * @module BoxCandleStick
+ **/
+
+ var BoxCandleStick = /*#__PURE__*/function (_Bar) {
+ _inherits(BoxCandleStick, _Bar);
+
+ var _super = _createSuper(BoxCandleStick);
+
+ function BoxCandleStick() {
+ _classCallCheck(this, BoxCandleStick);
+
+ return _super.apply(this, arguments);
+ }
+
+ _createClass(BoxCandleStick, [{
+ key: "draw",
+ value: function draw(series, ctype, seriesIndex) {
+ var _this = this;
+
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var type = w.globals.comboCharts ? ctype : w.config.chart.type;
+ var fill = new Fill(this.ctx);
+ this.candlestickOptions = this.w.config.plotOptions.candlestick;
+ this.boxOptions = this.w.config.plotOptions.boxPlot;
+ this.isHorizontal = w.config.plotOptions.bar.horizontal;
+ var coreUtils = new CoreUtils(this.ctx, w);
+ series = coreUtils.getLogSeries(series);
+ this.series = series;
+ this.yRatio = coreUtils.getLogYRatios(this.yRatio);
+ this.barHelpers.initVariables(series);
+ var ret = graphics.group({
+ class: "apexcharts-".concat(type, "-series apexcharts-plot-series")
+ });
+
+ var _loop = function _loop(i) {
+ _this.isBoxPlot = w.config.chart.type === 'boxPlot' || w.config.series[i].type === 'boxPlot';
+ var x = void 0,
+ y = void 0,
+ xDivision = void 0,
+ // xDivision is the GRIDWIDTH divided by number of datapoints (columns)
+ yDivision = void 0,
+ // yDivision is the GRIDHEIGHT divided by number of datapoints (bars)
+ zeroH = void 0,
+ // zeroH is the baseline where 0 meets y axis
+ zeroW = void 0; // zeroW is the baseline where 0 meets x axis
+
+ var yArrj = []; // hold y values of current iterating series
+
+ var xArrj = []; // hold x values of current iterating series
+
+ var realIndex = w.globals.comboCharts ? seriesIndex[i] : i; // el to which series will be drawn
+
+ var elSeries = graphics.group({
+ class: "apexcharts-series",
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[realIndex]),
+ rel: i + 1,
+ 'data:realIndex': realIndex
+ });
+
+ _this.ctx.series.addCollapsedClassToSeries(elSeries, realIndex);
+
+ if (series[i].length > 0) {
+ _this.visibleI = _this.visibleI + 1;
+ }
+
+ var barHeight = 0;
+ var barWidth = 0;
+ var translationsIndex = 0;
+
+ if (_this.yRatio.length > 1) {
+ _this.yaxisIndex = w.globals.seriesYAxisReverseMap[realIndex][0];
+ translationsIndex = realIndex;
+ }
+
+ var initPositions = _this.barHelpers.initialPositions();
+
+ y = initPositions.y;
+ barHeight = initPositions.barHeight;
+ yDivision = initPositions.yDivision;
+ zeroW = initPositions.zeroW;
+ x = initPositions.x;
+ barWidth = initPositions.barWidth;
+ xDivision = initPositions.xDivision;
+ zeroH = initPositions.zeroH;
+ xArrj.push(x + barWidth / 2); // eldatalabels
+
+ var elDataLabelsWrap = graphics.group({
+ class: 'apexcharts-datalabels',
+ 'data:realIndex': realIndex
+ });
+
+ var _loop2 = function _loop2(j) {
+ var strokeWidth = _this.barHelpers.getStrokeWidth(i, j, realIndex);
+
+ var paths = null;
+ var pathsParams = {
+ indexes: {
+ i: i,
+ j: j,
+ realIndex: realIndex,
+ translationsIndex: translationsIndex
+ },
+ x: x,
+ y: y,
+ strokeWidth: strokeWidth,
+ elSeries: elSeries
+ };
+
+ if (_this.isHorizontal) {
+ paths = _this.drawHorizontalBoxPaths(_objectSpread2(_objectSpread2({}, pathsParams), {}, {
+ yDivision: yDivision,
+ barHeight: barHeight,
+ zeroW: zeroW
+ }));
+ } else {
+ paths = _this.drawVerticalBoxPaths(_objectSpread2(_objectSpread2({}, pathsParams), {}, {
+ xDivision: xDivision,
+ barWidth: barWidth,
+ zeroH: zeroH
+ }));
+ }
+
+ y = paths.y;
+ x = paths.x; // push current X
+
+ if (j > 0) {
+ xArrj.push(x + barWidth / 2);
+ }
+
+ yArrj.push(y);
+ paths.pathTo.forEach(function (pathTo, pi) {
+ var lineFill = !_this.isBoxPlot && _this.candlestickOptions.wick.useFillColor ? paths.color[pi] : w.globals.stroke.colors[i];
+ var pathFill = fill.fillPath({
+ seriesNumber: realIndex,
+ dataPointIndex: j,
+ color: paths.color[pi],
+ value: series[i][j]
+ });
+
+ _this.renderSeries({
+ realIndex: realIndex,
+ pathFill: pathFill,
+ lineFill: lineFill,
+ j: j,
+ i: i,
+ pathFrom: paths.pathFrom,
+ pathTo: pathTo,
+ strokeWidth: strokeWidth,
+ elSeries: elSeries,
+ x: x,
+ y: y,
+ series: series,
+ barHeight: barHeight,
+ barWidth: barWidth,
+ elDataLabelsWrap: elDataLabelsWrap,
+ visibleSeries: _this.visibleI,
+ type: w.config.chart.type
+ });
+ });
+ };
+
+ for (var j = 0; j < w.globals.dataPoints; j++) {
+ _loop2(j);
+ } // push all x val arrays into main xArr
+
+
+ w.globals.seriesXvalues[realIndex] = xArrj;
+ w.globals.seriesYvalues[realIndex] = yArrj;
+ ret.add(elSeries);
+ };
+
+ for (var i = 0; i < series.length; i++) {
+ _loop(i);
+ }
+
+ return ret;
+ }
+ }, {
+ key: "drawVerticalBoxPaths",
+ value: function drawVerticalBoxPaths(_ref) {
+ var indexes = _ref.indexes,
+ x = _ref.x;
+ _ref.y;
+ var xDivision = _ref.xDivision,
+ barWidth = _ref.barWidth,
+ zeroH = _ref.zeroH,
+ strokeWidth = _ref.strokeWidth;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var i = indexes.i;
+ var j = indexes.j;
+ var isPositive = true;
+ var colorPos = w.config.plotOptions.candlestick.colors.upward;
+ var colorNeg = w.config.plotOptions.candlestick.colors.downward;
+ var color = '';
+
+ if (this.isBoxPlot) {
+ color = [this.boxOptions.colors.lower, this.boxOptions.colors.upper];
+ }
+
+ var yRatio = this.yRatio[indexes.translationsIndex];
+ var realIndex = indexes.realIndex;
+ var ohlc = this.getOHLCValue(realIndex, j);
+ var l1 = zeroH;
+ var l2 = zeroH;
+
+ if (ohlc.o > ohlc.c) {
+ isPositive = false;
+ }
+
+ var y1 = Math.min(ohlc.o, ohlc.c);
+ var y2 = Math.max(ohlc.o, ohlc.c);
+ var m = ohlc.m;
+
+ if (w.globals.isXNumeric) {
+ x = (w.globals.seriesX[realIndex][j] - w.globals.minX) / this.xRatio - barWidth / 2;
+ }
+
+ var barXPosition = x + barWidth * this.visibleI;
+
+ if (typeof this.series[i][j] === 'undefined' || this.series[i][j] === null) {
+ y1 = zeroH;
+ y2 = zeroH;
+ } else {
+ y1 = zeroH - y1 / yRatio;
+ y2 = zeroH - y2 / yRatio;
+ l1 = zeroH - ohlc.h / yRatio;
+ l2 = zeroH - ohlc.l / yRatio;
+ m = zeroH - ohlc.m / yRatio;
+ }
+
+ var pathTo = graphics.move(barXPosition, zeroH);
+ var pathFrom = graphics.move(barXPosition + barWidth / 2, y1);
+
+ if (w.globals.previousPaths.length > 0) {
+ pathFrom = this.getPreviousPath(realIndex, j, true);
+ }
+
+ if (this.isBoxPlot) {
+ pathTo = [graphics.move(barXPosition, y1) + graphics.line(barXPosition + barWidth / 2, y1) + graphics.line(barXPosition + barWidth / 2, l1) + graphics.line(barXPosition + barWidth / 4, l1) + graphics.line(barXPosition + barWidth - barWidth / 4, l1) + graphics.line(barXPosition + barWidth / 2, l1) + graphics.line(barXPosition + barWidth / 2, y1) + graphics.line(barXPosition + barWidth, y1) + graphics.line(barXPosition + barWidth, m) + graphics.line(barXPosition, m) + graphics.line(barXPosition, y1 + strokeWidth / 2), graphics.move(barXPosition, m) + graphics.line(barXPosition + barWidth, m) + graphics.line(barXPosition + barWidth, y2) + graphics.line(barXPosition + barWidth / 2, y2) + graphics.line(barXPosition + barWidth / 2, l2) + graphics.line(barXPosition + barWidth - barWidth / 4, l2) + graphics.line(barXPosition + barWidth / 4, l2) + graphics.line(barXPosition + barWidth / 2, l2) + graphics.line(barXPosition + barWidth / 2, y2) + graphics.line(barXPosition, y2) + graphics.line(barXPosition, m) + 'z'];
+ } else {
+ // candlestick
+ pathTo = [graphics.move(barXPosition, y2) + graphics.line(barXPosition + barWidth / 2, y2) + graphics.line(barXPosition + barWidth / 2, l1) + graphics.line(barXPosition + barWidth / 2, y2) + graphics.line(barXPosition + barWidth, y2) + graphics.line(barXPosition + barWidth, y1) + graphics.line(barXPosition + barWidth / 2, y1) + graphics.line(barXPosition + barWidth / 2, l2) + graphics.line(barXPosition + barWidth / 2, y1) + graphics.line(barXPosition, y1) + graphics.line(barXPosition, y2 - strokeWidth / 2)];
+ }
+
+ pathFrom = pathFrom + graphics.move(barXPosition, y1);
+
+ if (!w.globals.isXNumeric) {
+ x = x + xDivision;
+ }
+
+ return {
+ pathTo: pathTo,
+ pathFrom: pathFrom,
+ x: x,
+ y: y2,
+ barXPosition: barXPosition,
+ color: this.isBoxPlot ? color : isPositive ? [colorPos] : [colorNeg]
+ };
+ }
+ }, {
+ key: "drawHorizontalBoxPaths",
+ value: function drawHorizontalBoxPaths(_ref2) {
+ var indexes = _ref2.indexes;
+ _ref2.x;
+ var y = _ref2.y,
+ yDivision = _ref2.yDivision,
+ barHeight = _ref2.barHeight,
+ zeroW = _ref2.zeroW,
+ strokeWidth = _ref2.strokeWidth;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var i = indexes.i;
+ var j = indexes.j;
+ var color = this.boxOptions.colors.lower;
+
+ if (this.isBoxPlot) {
+ color = [this.boxOptions.colors.lower, this.boxOptions.colors.upper];
+ }
+
+ var yRatio = this.invertedYRatio;
+ var realIndex = indexes.realIndex;
+ var ohlc = this.getOHLCValue(realIndex, j);
+ var l1 = zeroW;
+ var l2 = zeroW;
+ var x1 = Math.min(ohlc.o, ohlc.c);
+ var x2 = Math.max(ohlc.o, ohlc.c);
+ var m = ohlc.m;
+
+ if (w.globals.isXNumeric) {
+ y = (w.globals.seriesX[realIndex][j] - w.globals.minX) / this.invertedXRatio - barHeight / 2;
+ }
+
+ var barYPosition = y + barHeight * this.visibleI;
+
+ if (typeof this.series[i][j] === 'undefined' || this.series[i][j] === null) {
+ x1 = zeroW;
+ x2 = zeroW;
+ } else {
+ x1 = zeroW + x1 / yRatio;
+ x2 = zeroW + x2 / yRatio;
+ l1 = zeroW + ohlc.h / yRatio;
+ l2 = zeroW + ohlc.l / yRatio;
+ m = zeroW + ohlc.m / yRatio;
+ }
+
+ var pathTo = graphics.move(zeroW, barYPosition);
+ var pathFrom = graphics.move(x1, barYPosition + barHeight / 2);
+
+ if (w.globals.previousPaths.length > 0) {
+ pathFrom = this.getPreviousPath(realIndex, j, true);
+ }
+
+ pathTo = [graphics.move(x1, barYPosition) + graphics.line(x1, barYPosition + barHeight / 2) + graphics.line(l1, barYPosition + barHeight / 2) + graphics.line(l1, barYPosition + barHeight / 2 - barHeight / 4) + graphics.line(l1, barYPosition + barHeight / 2 + barHeight / 4) + graphics.line(l1, barYPosition + barHeight / 2) + graphics.line(x1, barYPosition + barHeight / 2) + graphics.line(x1, barYPosition + barHeight) + graphics.line(m, barYPosition + barHeight) + graphics.line(m, barYPosition) + graphics.line(x1 + strokeWidth / 2, barYPosition), graphics.move(m, barYPosition) + graphics.line(m, barYPosition + barHeight) + graphics.line(x2, barYPosition + barHeight) + graphics.line(x2, barYPosition + barHeight / 2) + graphics.line(l2, barYPosition + barHeight / 2) + graphics.line(l2, barYPosition + barHeight - barHeight / 4) + graphics.line(l2, barYPosition + barHeight / 4) + graphics.line(l2, barYPosition + barHeight / 2) + graphics.line(x2, barYPosition + barHeight / 2) + graphics.line(x2, barYPosition) + graphics.line(m, barYPosition) + 'z'];
+ pathFrom = pathFrom + graphics.move(x1, barYPosition);
+
+ if (!w.globals.isXNumeric) {
+ y = y + yDivision;
+ }
+
+ return {
+ pathTo: pathTo,
+ pathFrom: pathFrom,
+ x: x2,
+ y: y,
+ barYPosition: barYPosition,
+ color: color
+ };
+ }
+ }, {
+ key: "getOHLCValue",
+ value: function getOHLCValue(i, j) {
+ var w = this.w;
+ return {
+ o: this.isBoxPlot ? w.globals.seriesCandleH[i][j] : w.globals.seriesCandleO[i][j],
+ h: this.isBoxPlot ? w.globals.seriesCandleO[i][j] : w.globals.seriesCandleH[i][j],
+ m: w.globals.seriesCandleM[i][j],
+ l: this.isBoxPlot ? w.globals.seriesCandleC[i][j] : w.globals.seriesCandleL[i][j],
+ c: this.isBoxPlot ? w.globals.seriesCandleL[i][j] : w.globals.seriesCandleC[i][j]
+ };
+ }
+ }]);
+
+ return BoxCandleStick;
+ }(Bar);
+
+ var TreemapHelpers = /*#__PURE__*/function () {
+ function TreemapHelpers(ctx) {
+ _classCallCheck(this, TreemapHelpers);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(TreemapHelpers, [{
+ key: "checkColorRange",
+ value: function checkColorRange() {
+ var w = this.w;
+ var negRange = false;
+ var chartOpts = w.config.plotOptions[w.config.chart.type];
+
+ if (chartOpts.colorScale.ranges.length > 0) {
+ chartOpts.colorScale.ranges.map(function (range, index) {
+ if (range.from <= 0) {
+ negRange = true;
+ }
+ });
+ }
+
+ return negRange;
+ }
+ }, {
+ key: "getShadeColor",
+ value: function getShadeColor(chartType, i, j, negRange) {
+ var w = this.w;
+ var colorShadePercent = 1;
+ var shadeIntensity = w.config.plotOptions[chartType].shadeIntensity;
+ var colorProps = this.determineColor(chartType, i, j);
+
+ if (w.globals.hasNegs || negRange) {
+ if (w.config.plotOptions[chartType].reverseNegativeShade) {
+ if (colorProps.percent < 0) {
+ colorShadePercent = colorProps.percent / 100 * (shadeIntensity * 1.25);
+ } else {
+ colorShadePercent = (1 - colorProps.percent / 100) * (shadeIntensity * 1.25);
+ }
+ } else {
+ if (colorProps.percent <= 0) {
+ colorShadePercent = 1 - (1 + colorProps.percent / 100) * shadeIntensity;
+ } else {
+ colorShadePercent = (1 - colorProps.percent / 100) * shadeIntensity;
+ }
+ }
+ } else {
+ colorShadePercent = 1 - colorProps.percent / 100;
+
+ if (chartType === 'treemap') {
+ colorShadePercent = (1 - colorProps.percent / 100) * (shadeIntensity * 1.25);
+ }
+ }
+
+ var color = colorProps.color;
+ var utils = new Utils$1();
+
+ if (w.config.plotOptions[chartType].enableShades) {
+ if (this.w.config.theme.mode === 'dark') {
+ color = Utils$1.hexToRgba(utils.shadeColor(colorShadePercent * -1, colorProps.color), w.config.fill.opacity);
+ } else {
+ color = Utils$1.hexToRgba(utils.shadeColor(colorShadePercent, colorProps.color), w.config.fill.opacity);
+ }
+ }
+
+ return {
+ color: color,
+ colorProps: colorProps
+ };
+ }
+ }, {
+ key: "determineColor",
+ value: function determineColor(chartType, i, j) {
+ var w = this.w;
+ var val = w.globals.series[i][j];
+ var chartOpts = w.config.plotOptions[chartType];
+ var seriesNumber = chartOpts.colorScale.inverse ? j : i;
+
+ if (chartOpts.distributed && w.config.chart.type === 'treemap') {
+ seriesNumber = j;
+ }
+
+ var color = w.globals.colors[seriesNumber];
+ var foreColor = null;
+ var min = Math.min.apply(Math, _toConsumableArray(w.globals.series[i]));
+ var max = Math.max.apply(Math, _toConsumableArray(w.globals.series[i]));
+
+ if (!chartOpts.distributed && chartType === 'heatmap') {
+ min = w.globals.minY;
+ max = w.globals.maxY;
+ }
+
+ if (typeof chartOpts.colorScale.min !== 'undefined') {
+ min = chartOpts.colorScale.min < w.globals.minY ? chartOpts.colorScale.min : w.globals.minY;
+ max = chartOpts.colorScale.max > w.globals.maxY ? chartOpts.colorScale.max : w.globals.maxY;
+ }
+
+ var total = Math.abs(max) + Math.abs(min);
+ var percent = 100 * val / (total === 0 ? total - 0.000001 : total);
+
+ if (chartOpts.colorScale.ranges.length > 0) {
+ var colorRange = chartOpts.colorScale.ranges;
+ colorRange.map(function (range, index) {
+ if (val >= range.from && val <= range.to) {
+ color = range.color;
+ foreColor = range.foreColor ? range.foreColor : null;
+ min = range.from;
+ max = range.to;
+ var rTotal = Math.abs(max) + Math.abs(min);
+ percent = 100 * val / (rTotal === 0 ? rTotal - 0.000001 : rTotal);
+ }
+ });
+ }
+
+ return {
+ color: color,
+ foreColor: foreColor,
+ percent: percent
+ };
+ }
+ }, {
+ key: "calculateDataLabels",
+ value: function calculateDataLabels(_ref) {
+ var text = _ref.text,
+ x = _ref.x,
+ y = _ref.y,
+ i = _ref.i,
+ j = _ref.j,
+ colorProps = _ref.colorProps,
+ fontSize = _ref.fontSize;
+ var w = this.w;
+ var dataLabelsConfig = w.config.dataLabels;
+ var graphics = new Graphics(this.ctx);
+ var dataLabels = new DataLabels(this.ctx);
+ var elDataLabelsWrap = null;
+
+ if (dataLabelsConfig.enabled) {
+ elDataLabelsWrap = graphics.group({
+ class: 'apexcharts-data-labels'
+ });
+ var offX = dataLabelsConfig.offsetX;
+ var offY = dataLabelsConfig.offsetY;
+ var dataLabelsX = x + offX;
+ var dataLabelsY = y + parseFloat(dataLabelsConfig.style.fontSize) / 3 + offY;
+ dataLabels.plotDataLabelsText({
+ x: dataLabelsX,
+ y: dataLabelsY,
+ text: text,
+ i: i,
+ j: j,
+ color: colorProps.foreColor,
+ parent: elDataLabelsWrap,
+ fontSize: fontSize,
+ dataLabelsConfig: dataLabelsConfig
+ });
+ }
+
+ return elDataLabelsWrap;
+ }
+ }, {
+ key: "addListeners",
+ value: function addListeners(elRect) {
+ var graphics = new Graphics(this.ctx);
+ elRect.node.addEventListener('mouseenter', graphics.pathMouseEnter.bind(this, elRect));
+ elRect.node.addEventListener('mouseleave', graphics.pathMouseLeave.bind(this, elRect));
+ elRect.node.addEventListener('mousedown', graphics.pathMouseDown.bind(this, elRect));
+ }
+ }]);
+
+ return TreemapHelpers;
+ }();
+
+ /**
+ * ApexCharts HeatMap Class.
+ * @module HeatMap
+ **/
+
+ var HeatMap = /*#__PURE__*/function () {
+ function HeatMap(ctx, xyRatios) {
+ _classCallCheck(this, HeatMap);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.xRatio = xyRatios.xRatio;
+ this.yRatio = xyRatios.yRatio;
+ this.dynamicAnim = this.w.config.chart.animations.dynamicAnimation;
+ this.helpers = new TreemapHelpers(ctx);
+ this.rectRadius = this.w.config.plotOptions.heatmap.radius;
+ this.strokeWidth = this.w.config.stroke.show ? this.w.config.stroke.width : 0;
+ }
+
+ _createClass(HeatMap, [{
+ key: "draw",
+ value: function draw(series) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var ret = graphics.group({
+ class: 'apexcharts-heatmap'
+ });
+ ret.attr('clip-path', "url(#gridRectMask".concat(w.globals.cuid, ")")); // width divided into equal parts
+
+ var xDivision = w.globals.gridWidth / w.globals.dataPoints;
+ var yDivision = w.globals.gridHeight / w.globals.series.length;
+ var y1 = 0;
+ var rev = false;
+ this.negRange = this.helpers.checkColorRange();
+ var heatSeries = series.slice();
+
+ if (w.config.yaxis[0].reversed) {
+ rev = true;
+ heatSeries.reverse();
+ }
+
+ for (var i = rev ? 0 : heatSeries.length - 1; rev ? i < heatSeries.length : i >= 0; rev ? i++ : i--) {
+ // el to which series will be drawn
+ var elSeries = graphics.group({
+ class: "apexcharts-series apexcharts-heatmap-series",
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[i]),
+ rel: i + 1,
+ 'data:realIndex': i
+ });
+ this.ctx.series.addCollapsedClassToSeries(elSeries, i);
+
+ if (w.config.chart.dropShadow.enabled) {
+ var shadow = w.config.chart.dropShadow;
+ var filters = new Filters(this.ctx);
+ filters.dropShadow(elSeries, shadow, i);
+ }
+
+ var x1 = 0;
+ var shadeIntensity = w.config.plotOptions.heatmap.shadeIntensity;
+
+ for (var j = 0; j < heatSeries[i].length; j++) {
+ var heatColor = this.helpers.getShadeColor(w.config.chart.type, i, j, this.negRange);
+ var color = heatColor.color;
+ var heatColorProps = heatColor.colorProps;
+
+ if (w.config.fill.type === 'image') {
+ var fill = new Fill(this.ctx);
+ color = fill.fillPath({
+ seriesNumber: i,
+ dataPointIndex: j,
+ opacity: w.globals.hasNegs ? heatColorProps.percent < 0 ? 1 - (1 + heatColorProps.percent / 100) : shadeIntensity + heatColorProps.percent / 100 : heatColorProps.percent / 100,
+ patternID: Utils$1.randomId(),
+ width: w.config.fill.image.width ? w.config.fill.image.width : xDivision,
+ height: w.config.fill.image.height ? w.config.fill.image.height : yDivision
+ });
+ }
+
+ var radius = this.rectRadius;
+ var rect = graphics.drawRect(x1, y1, xDivision, yDivision, radius);
+ rect.attr({
+ cx: x1,
+ cy: y1
+ });
+ rect.node.classList.add('apexcharts-heatmap-rect');
+ elSeries.add(rect);
+ rect.attr({
+ fill: color,
+ i: i,
+ index: i,
+ j: j,
+ val: series[i][j],
+ 'stroke-width': this.strokeWidth,
+ stroke: w.config.plotOptions.heatmap.useFillColorAsStroke ? color : w.globals.stroke.colors[0],
+ color: color
+ });
+ this.helpers.addListeners(rect);
+
+ if (w.config.chart.animations.enabled && !w.globals.dataChanged) {
+ var speed = 1;
+
+ if (!w.globals.resized) {
+ speed = w.config.chart.animations.speed;
+ }
+
+ this.animateHeatMap(rect, x1, y1, xDivision, yDivision, speed);
+ }
+
+ if (w.globals.dataChanged) {
+ var _speed = 1;
+
+ if (this.dynamicAnim.enabled && w.globals.shouldAnimate) {
+ _speed = this.dynamicAnim.speed;
+ var colorFrom = w.globals.previousPaths[i] && w.globals.previousPaths[i][j] && w.globals.previousPaths[i][j].color;
+ if (!colorFrom) colorFrom = 'rgba(255, 255, 255, 0)';
+ this.animateHeatColor(rect, Utils$1.isColorHex(colorFrom) ? colorFrom : Utils$1.rgb2hex(colorFrom), Utils$1.isColorHex(color) ? color : Utils$1.rgb2hex(color), _speed);
+ }
+ }
+
+ var formatter = w.config.dataLabels.formatter;
+ var formattedText = formatter(w.globals.series[i][j], {
+ value: w.globals.series[i][j],
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ });
+ var dataLabels = this.helpers.calculateDataLabels({
+ text: formattedText,
+ x: x1 + xDivision / 2,
+ y: y1 + yDivision / 2,
+ i: i,
+ j: j,
+ colorProps: heatColorProps,
+ series: heatSeries
+ });
+
+ if (dataLabels !== null) {
+ elSeries.add(dataLabels);
+ }
+
+ x1 = x1 + xDivision;
+ }
+
+ y1 = y1 + yDivision;
+ ret.add(elSeries);
+ } // adjust yaxis labels for heatmap
+
+
+ var yAxisScale = w.globals.yAxisScale[0].result.slice();
+
+ if (w.config.yaxis[0].reversed) {
+ yAxisScale.unshift('');
+ } else {
+ yAxisScale.push('');
+ }
+
+ w.globals.yAxisScale[0].result = yAxisScale;
+ return ret;
+ }
+ }, {
+ key: "animateHeatMap",
+ value: function animateHeatMap(el, x, y, width, height, speed) {
+ var animations = new Animations(this.ctx);
+ animations.animateRect(el, {
+ x: x + width / 2,
+ y: y + height / 2,
+ width: 0,
+ height: 0
+ }, {
+ x: x,
+ y: y,
+ width: width,
+ height: height
+ }, speed, function () {
+ animations.animationCompleted(el);
+ });
+ }
+ }, {
+ key: "animateHeatColor",
+ value: function animateHeatColor(el, colorFrom, colorTo, speed) {
+ el.attr({
+ fill: colorFrom
+ }).animate(speed).attr({
+ fill: colorTo
+ });
+ }
+ }]);
+
+ return HeatMap;
+ }();
+
+ var CircularChartsHelpers = /*#__PURE__*/function () {
+ function CircularChartsHelpers(ctx) {
+ _classCallCheck(this, CircularChartsHelpers);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+
+ _createClass(CircularChartsHelpers, [{
+ key: "drawYAxisTexts",
+ value: function drawYAxisTexts(x, y, i, text) {
+ var w = this.w;
+ var yaxisConfig = w.config.yaxis[0];
+ var formatter = w.globals.yLabelFormatters[0];
+ var graphics = new Graphics(this.ctx);
+ var yaxisLabel = graphics.drawText({
+ x: x + yaxisConfig.labels.offsetX,
+ y: y + yaxisConfig.labels.offsetY,
+ text: formatter(text, i),
+ textAnchor: 'middle',
+ fontSize: yaxisConfig.labels.style.fontSize,
+ fontFamily: yaxisConfig.labels.style.fontFamily,
+ foreColor: Array.isArray(yaxisConfig.labels.style.colors) ? yaxisConfig.labels.style.colors[i] : yaxisConfig.labels.style.colors
+ });
+ return yaxisLabel;
+ }
+ }]);
+
+ return CircularChartsHelpers;
+ }();
+
+ /**
+ * ApexCharts Pie Class for drawing Pie / Donut Charts.
+ * @module Pie
+ **/
+
+ var Pie = /*#__PURE__*/function () {
+ function Pie(ctx) {
+ _classCallCheck(this, Pie);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ var w = this.w;
+ this.chartType = this.w.config.chart.type;
+ this.initialAnim = this.w.config.chart.animations.enabled;
+ this.dynamicAnim = this.initialAnim && this.w.config.chart.animations.dynamicAnimation.enabled;
+ this.animBeginArr = [0];
+ this.animDur = 0;
+ this.donutDataLabels = this.w.config.plotOptions.pie.donut.labels;
+ this.lineColorArr = w.globals.stroke.colors !== undefined ? w.globals.stroke.colors : w.globals.colors;
+ this.defaultSize = Math.min(w.globals.gridWidth, w.globals.gridHeight);
+ this.centerY = this.defaultSize / 2;
+ this.centerX = w.globals.gridWidth / 2;
+
+ if (w.config.chart.type === 'radialBar') {
+ this.fullAngle = 360;
+ } else {
+ this.fullAngle = Math.abs(w.config.plotOptions.pie.endAngle - w.config.plotOptions.pie.startAngle);
+ }
+
+ this.initialAngle = w.config.plotOptions.pie.startAngle % this.fullAngle;
+ w.globals.radialSize = this.defaultSize / 2.05 - w.config.stroke.width - (!w.config.chart.sparkline.enabled ? w.config.chart.dropShadow.blur : 0);
+ this.donutSize = w.globals.radialSize * parseInt(w.config.plotOptions.pie.donut.size, 10) / 100;
+ this.maxY = 0;
+ this.sliceLabels = [];
+ this.sliceSizes = [];
+ this.prevSectorAngleArr = []; // for dynamic animations
+ }
+
+ _createClass(Pie, [{
+ key: "draw",
+ value: function draw(series) {
+ var _this = this;
+
+ var self = this;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ this.ret = graphics.group({
+ class: 'apexcharts-pie'
+ });
+ if (w.globals.noData) return this.ret;
+ var total = 0;
+
+ for (var k = 0; k < series.length; k++) {
+ // CALCULATE THE TOTAL
+ total += Utils$1.negToZero(series[k]);
+ }
+
+ var sectorAngleArr = []; // el to which series will be drawn
+
+ var elSeries = graphics.group(); // prevent division by zero error if there is no data
+
+ if (total === 0) {
+ total = 0.00001;
+ }
+
+ series.forEach(function (m) {
+ _this.maxY = Math.max(_this.maxY, m);
+ }); // override maxY if user provided in config
+
+ if (w.config.yaxis[0].max) {
+ this.maxY = w.config.yaxis[0].max;
+ }
+
+ if (w.config.grid.position === 'back' && this.chartType === 'polarArea') {
+ this.drawPolarElements(this.ret);
+ }
+
+ for (var i = 0; i < series.length; i++) {
+ // CALCULATE THE ANGLES
+ var angle = this.fullAngle * Utils$1.negToZero(series[i]) / total;
+ sectorAngleArr.push(angle);
+
+ if (this.chartType === 'polarArea') {
+ sectorAngleArr[i] = this.fullAngle / series.length;
+ this.sliceSizes.push(w.globals.radialSize * series[i] / this.maxY);
+ } else {
+ this.sliceSizes.push(w.globals.radialSize);
+ }
+ }
+
+ if (w.globals.dataChanged) {
+ var prevTotal = 0;
+
+ for (var _k = 0; _k < w.globals.previousPaths.length; _k++) {
+ // CALCULATE THE PREV TOTAL
+ prevTotal += Utils$1.negToZero(w.globals.previousPaths[_k]);
+ }
+
+ var previousAngle;
+
+ for (var _i = 0; _i < w.globals.previousPaths.length; _i++) {
+ // CALCULATE THE PREVIOUS ANGLES
+ previousAngle = this.fullAngle * Utils$1.negToZero(w.globals.previousPaths[_i]) / prevTotal;
+ this.prevSectorAngleArr.push(previousAngle);
+ }
+ } // on small chart size after few count of resizes browser window donutSize can be negative
+
+
+ if (this.donutSize < 0) {
+ this.donutSize = 0;
+ }
+
+ var scaleSize = w.config.plotOptions.pie.customScale;
+ var halfW = w.globals.gridWidth / 2;
+ var halfH = w.globals.gridHeight / 2;
+ var translateX = halfW - w.globals.gridWidth / 2 * scaleSize;
+ var translateY = halfH - w.globals.gridHeight / 2 * scaleSize;
+
+ if (this.chartType === 'donut') {
+ // draw the inner circle and add some text to it
+ var circle = graphics.drawCircle(this.donutSize);
+ circle.attr({
+ cx: this.centerX,
+ cy: this.centerY,
+ fill: w.config.plotOptions.pie.donut.background ? w.config.plotOptions.pie.donut.background : 'transparent'
+ });
+ elSeries.add(circle);
+ }
+
+ var elG = self.drawArcs(sectorAngleArr, series); // add slice dataLabels at the end
+
+ this.sliceLabels.forEach(function (s) {
+ elG.add(s);
+ });
+ elSeries.attr({
+ transform: "translate(".concat(translateX, ", ").concat(translateY, ") scale(").concat(scaleSize, ")")
+ });
+ elSeries.add(elG);
+ this.ret.add(elSeries);
+
+ if (this.donutDataLabels.show) {
+ var dataLabels = this.renderInnerDataLabels(this.donutDataLabels, {
+ hollowSize: this.donutSize,
+ centerX: this.centerX,
+ centerY: this.centerY,
+ opacity: this.donutDataLabels.show,
+ translateX: translateX,
+ translateY: translateY
+ });
+ this.ret.add(dataLabels);
+ }
+
+ if (w.config.grid.position === 'front' && this.chartType === 'polarArea') {
+ this.drawPolarElements(this.ret);
+ }
+
+ return this.ret;
+ } // core function for drawing pie arcs
+
+ }, {
+ key: "drawArcs",
+ value: function drawArcs(sectorAngleArr, series) {
+ var w = this.w;
+ var filters = new Filters(this.ctx);
+ var graphics = new Graphics(this.ctx);
+ var fill = new Fill(this.ctx);
+ var g = graphics.group({
+ class: 'apexcharts-slices'
+ });
+ var startAngle = this.initialAngle;
+ var prevStartAngle = this.initialAngle;
+ var endAngle = this.initialAngle;
+ var prevEndAngle = this.initialAngle;
+ this.strokeWidth = w.config.stroke.show ? w.config.stroke.width : 0;
+
+ for (var i = 0; i < sectorAngleArr.length; i++) {
+ var elPieArc = graphics.group({
+ class: "apexcharts-series apexcharts-pie-series",
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[i]),
+ rel: i + 1,
+ 'data:realIndex': i
+ });
+ g.add(elPieArc);
+ startAngle = endAngle;
+ prevStartAngle = prevEndAngle;
+ endAngle = startAngle + sectorAngleArr[i];
+ prevEndAngle = prevStartAngle + this.prevSectorAngleArr[i];
+ var angle = endAngle < startAngle ? this.fullAngle + endAngle - startAngle : endAngle - startAngle;
+ var pathFill = fill.fillPath({
+ seriesNumber: i,
+ size: this.sliceSizes[i],
+ value: series[i]
+ }); // additionally, pass size for gradient drawing in the fillPath function
+
+ var path = this.getChangedPath(prevStartAngle, prevEndAngle);
+ var elPath = graphics.drawPath({
+ d: path,
+ stroke: Array.isArray(this.lineColorArr) ? this.lineColorArr[i] : this.lineColorArr,
+ strokeWidth: 0,
+ fill: pathFill,
+ fillOpacity: w.config.fill.opacity,
+ classes: "apexcharts-pie-area apexcharts-".concat(this.chartType.toLowerCase(), "-slice-").concat(i)
+ });
+ elPath.attr({
+ index: 0,
+ j: i
+ });
+ filters.setSelectionFilter(elPath, 0, i);
+
+ if (w.config.chart.dropShadow.enabled) {
+ var shadow = w.config.chart.dropShadow;
+ filters.dropShadow(elPath, shadow, i);
+ }
+
+ this.addListeners(elPath, this.donutDataLabels);
+ Graphics.setAttrs(elPath.node, {
+ 'data:angle': angle,
+ 'data:startAngle': startAngle,
+ 'data:strokeWidth': this.strokeWidth,
+ 'data:value': series[i]
+ });
+ var labelPosition = {
+ x: 0,
+ y: 0
+ };
+
+ if (this.chartType === 'pie' || this.chartType === 'polarArea') {
+ labelPosition = Utils$1.polarToCartesian(this.centerX, this.centerY, w.globals.radialSize / 1.25 + w.config.plotOptions.pie.dataLabels.offset, (startAngle + angle / 2) % this.fullAngle);
+ } else if (this.chartType === 'donut') {
+ labelPosition = Utils$1.polarToCartesian(this.centerX, this.centerY, (w.globals.radialSize + this.donutSize) / 2 + w.config.plotOptions.pie.dataLabels.offset, (startAngle + angle / 2) % this.fullAngle);
+ }
+
+ elPieArc.add(elPath); // Animation code starts
+
+ var dur = 0;
+
+ if (this.initialAnim && !w.globals.resized && !w.globals.dataChanged) {
+ dur = angle / this.fullAngle * w.config.chart.animations.speed;
+ if (dur === 0) dur = 1;
+ this.animDur = dur + this.animDur;
+ this.animBeginArr.push(this.animDur);
+ } else {
+ this.animBeginArr.push(0);
+ }
+
+ if (this.dynamicAnim && w.globals.dataChanged) {
+ this.animatePaths(elPath, {
+ size: this.sliceSizes[i],
+ endAngle: endAngle,
+ startAngle: startAngle,
+ prevStartAngle: prevStartAngle,
+ prevEndAngle: prevEndAngle,
+ animateStartingPos: true,
+ i: i,
+ animBeginArr: this.animBeginArr,
+ shouldSetPrevPaths: true,
+ dur: w.config.chart.animations.dynamicAnimation.speed
+ });
+ } else {
+ this.animatePaths(elPath, {
+ size: this.sliceSizes[i],
+ endAngle: endAngle,
+ startAngle: startAngle,
+ i: i,
+ totalItems: sectorAngleArr.length - 1,
+ animBeginArr: this.animBeginArr,
+ dur: dur
+ });
+ } // animation code ends
+
+
+ if (w.config.plotOptions.pie.expandOnClick && this.chartType !== 'polarArea') {
+ elPath.click(this.pieClicked.bind(this, i));
+ }
+
+ if (typeof w.globals.selectedDataPoints[0] !== 'undefined' && w.globals.selectedDataPoints[0].indexOf(i) > -1) {
+ this.pieClicked(i);
+ }
+
+ if (w.config.dataLabels.enabled) {
+ var xPos = labelPosition.x;
+ var yPos = labelPosition.y;
+ var text = 100 * angle / this.fullAngle + '%';
+
+ if (angle !== 0 && w.config.plotOptions.pie.dataLabels.minAngleToShowLabel < sectorAngleArr[i]) {
+ var formatter = w.config.dataLabels.formatter;
+
+ if (formatter !== undefined) {
+ text = formatter(w.globals.seriesPercent[i][0], {
+ seriesIndex: i,
+ w: w
+ });
+ }
+
+ var foreColor = w.globals.dataLabels.style.colors[i];
+ var elPieLabelWrap = graphics.group({
+ class: "apexcharts-datalabels"
+ });
+ var elPieLabel = graphics.drawText({
+ x: xPos,
+ y: yPos,
+ text: text,
+ textAnchor: 'middle',
+ fontSize: w.config.dataLabels.style.fontSize,
+ fontFamily: w.config.dataLabels.style.fontFamily,
+ fontWeight: w.config.dataLabels.style.fontWeight,
+ foreColor: foreColor
+ });
+ elPieLabelWrap.add(elPieLabel);
+
+ if (w.config.dataLabels.dropShadow.enabled) {
+ var textShadow = w.config.dataLabels.dropShadow;
+ filters.dropShadow(elPieLabel, textShadow);
+ }
+
+ elPieLabel.node.classList.add('apexcharts-pie-label');
+
+ if (w.config.chart.animations.animate && w.globals.resized === false) {
+ elPieLabel.node.classList.add('apexcharts-pie-label-delay');
+ elPieLabel.node.style.animationDelay = w.config.chart.animations.speed / 940 + 's';
+ }
+
+ this.sliceLabels.push(elPieLabelWrap);
+ }
+ }
+ }
+
+ return g;
+ }
+ }, {
+ key: "addListeners",
+ value: function addListeners(elPath, dataLabels) {
+ var graphics = new Graphics(this.ctx); // append filters on mouseenter and mouseleave
+
+ elPath.node.addEventListener('mouseenter', graphics.pathMouseEnter.bind(this, elPath));
+ elPath.node.addEventListener('mouseleave', graphics.pathMouseLeave.bind(this, elPath));
+ elPath.node.addEventListener('mouseleave', this.revertDataLabelsInner.bind(this, elPath.node, dataLabels));
+ elPath.node.addEventListener('mousedown', graphics.pathMouseDown.bind(this, elPath));
+
+ if (!this.donutDataLabels.total.showAlways) {
+ elPath.node.addEventListener('mouseenter', this.printDataLabelsInner.bind(this, elPath.node, dataLabels));
+ elPath.node.addEventListener('mousedown', this.printDataLabelsInner.bind(this, elPath.node, dataLabels));
+ }
+ } // This function can be used for other circle charts too
+
+ }, {
+ key: "animatePaths",
+ value: function animatePaths(el, opts) {
+ var w = this.w;
+ var me = this;
+ var angle = opts.endAngle < opts.startAngle ? this.fullAngle + opts.endAngle - opts.startAngle : opts.endAngle - opts.startAngle;
+ var prevAngle = angle;
+ var fromStartAngle = opts.startAngle;
+ var toStartAngle = opts.startAngle;
+
+ if (opts.prevStartAngle !== undefined && opts.prevEndAngle !== undefined) {
+ fromStartAngle = opts.prevEndAngle;
+ prevAngle = opts.prevEndAngle < opts.prevStartAngle ? this.fullAngle + opts.prevEndAngle - opts.prevStartAngle : opts.prevEndAngle - opts.prevStartAngle;
+ }
+
+ if (opts.i === w.config.series.length - 1) {
+ // some adjustments for the last overlapping paths
+ if (angle + toStartAngle > this.fullAngle) {
+ opts.endAngle = opts.endAngle - (angle + toStartAngle);
+ } else if (angle + toStartAngle < this.fullAngle) {
+ opts.endAngle = opts.endAngle + (this.fullAngle - (angle + toStartAngle));
+ }
+ }
+
+ if (angle === this.fullAngle) angle = this.fullAngle - 0.01;
+ me.animateArc(el, fromStartAngle, toStartAngle, angle, prevAngle, opts);
+ }
+ }, {
+ key: "animateArc",
+ value: function animateArc(el, fromStartAngle, toStartAngle, angle, prevAngle, opts) {
+ var me = this;
+ var w = this.w;
+ var animations = new Animations(this.ctx);
+ var size = opts.size;
+ var path;
+
+ if (isNaN(fromStartAngle) || isNaN(prevAngle)) {
+ fromStartAngle = toStartAngle;
+ prevAngle = angle;
+ opts.dur = 0;
+ }
+
+ var currAngle = angle;
+ var startAngle = toStartAngle;
+ var fromAngle = fromStartAngle < toStartAngle ? this.fullAngle + fromStartAngle - toStartAngle : fromStartAngle - toStartAngle;
+
+ if (w.globals.dataChanged && opts.shouldSetPrevPaths) {
+ // to avoid flicker when updating, set prev path first and then animate from there
+ if (opts.prevEndAngle) {
+ path = me.getPiePath({
+ me: me,
+ startAngle: opts.prevStartAngle,
+ angle: opts.prevEndAngle < opts.prevStartAngle ? this.fullAngle + opts.prevEndAngle - opts.prevStartAngle : opts.prevEndAngle - opts.prevStartAngle,
+ size: size
+ });
+ el.attr({
+ d: path
+ });
+ }
+ }
+
+ if (opts.dur !== 0) {
+ el.animate(opts.dur, w.globals.easing, opts.animBeginArr[opts.i]).afterAll(function () {
+ if (me.chartType === 'pie' || me.chartType === 'donut' || me.chartType === 'polarArea') {
+ this.animate(w.config.chart.animations.dynamicAnimation.speed).attr({
+ 'stroke-width': me.strokeWidth
+ });
+ }
+
+ if (opts.i === w.config.series.length - 1) {
+ animations.animationCompleted(el);
+ }
+ }).during(function (pos) {
+ currAngle = fromAngle + (angle - fromAngle) * pos;
+
+ if (opts.animateStartingPos) {
+ currAngle = prevAngle + (angle - prevAngle) * pos;
+ startAngle = fromStartAngle - prevAngle + (toStartAngle - (fromStartAngle - prevAngle)) * pos;
+ }
+
+ path = me.getPiePath({
+ me: me,
+ startAngle: startAngle,
+ angle: currAngle,
+ size: size
+ });
+ el.node.setAttribute('data:pathOrig', path);
+ el.attr({
+ d: path
+ });
+ });
+ } else {
+ path = me.getPiePath({
+ me: me,
+ startAngle: startAngle,
+ angle: angle,
+ size: size
+ });
+
+ if (!opts.isTrack) {
+ w.globals.animationEnded = true;
+ }
+
+ el.node.setAttribute('data:pathOrig', path);
+ el.attr({
+ d: path,
+ 'stroke-width': me.strokeWidth
+ });
+ }
+ }
+ }, {
+ key: "pieClicked",
+ value: function pieClicked(i) {
+ var w = this.w;
+ var me = this;
+ var path;
+ var size = me.sliceSizes[i] + (w.config.plotOptions.pie.expandOnClick ? 4 : 0);
+ var elPath = w.globals.dom.Paper.select(".apexcharts-".concat(me.chartType.toLowerCase(), "-slice-").concat(i)).members[0];
+
+ if (elPath.attr('data:pieClicked') === 'true') {
+ elPath.attr({
+ 'data:pieClicked': 'false'
+ });
+ this.revertDataLabelsInner(elPath.node, this.donutDataLabels);
+ var origPath = elPath.attr('data:pathOrig');
+ elPath.attr({
+ d: origPath
+ });
+ return;
+ } else {
+ // reset all elems
+ var allEls = w.globals.dom.baseEl.getElementsByClassName('apexcharts-pie-area');
+ Array.prototype.forEach.call(allEls, function (pieSlice) {
+ pieSlice.setAttribute('data:pieClicked', 'false');
+ var origPath = pieSlice.getAttribute('data:pathOrig');
+
+ if (origPath) {
+ pieSlice.setAttribute('d', origPath);
+ }
+ });
+ elPath.attr('data:pieClicked', 'true');
+ }
+
+ var startAngle = parseInt(elPath.attr('data:startAngle'), 10);
+ var angle = parseInt(elPath.attr('data:angle'), 10);
+ path = me.getPiePath({
+ me: me,
+ startAngle: startAngle,
+ angle: angle,
+ size: size
+ });
+ if (angle === 360) return;
+ elPath.plot(path);
+ }
+ }, {
+ key: "getChangedPath",
+ value: function getChangedPath(prevStartAngle, prevEndAngle) {
+ var path = '';
+
+ if (this.dynamicAnim && this.w.globals.dataChanged) {
+ path = this.getPiePath({
+ me: this,
+ startAngle: prevStartAngle,
+ angle: prevEndAngle - prevStartAngle,
+ size: this.size
+ });
+ }
+
+ return path;
+ }
+ }, {
+ key: "getPiePath",
+ value: function getPiePath(_ref) {
+ var me = _ref.me,
+ startAngle = _ref.startAngle,
+ angle = _ref.angle,
+ size = _ref.size;
+ var path;
+ var graphics = new Graphics(this.ctx);
+ var startDeg = startAngle;
+ var startRadians = Math.PI * (startDeg - 90) / 180;
+ var endDeg = angle + startAngle; // prevent overlap
+
+ if (Math.ceil(endDeg) >= this.fullAngle + this.w.config.plotOptions.pie.startAngle % this.fullAngle) {
+ endDeg = this.fullAngle + this.w.config.plotOptions.pie.startAngle % this.fullAngle - 0.01;
+ }
+
+ if (Math.ceil(endDeg) > this.fullAngle) endDeg -= this.fullAngle;
+ var endRadians = Math.PI * (endDeg - 90) / 180;
+ var x1 = me.centerX + size * Math.cos(startRadians);
+ var y1 = me.centerY + size * Math.sin(startRadians);
+ var x2 = me.centerX + size * Math.cos(endRadians);
+ var y2 = me.centerY + size * Math.sin(endRadians);
+ var startInner = Utils$1.polarToCartesian(me.centerX, me.centerY, me.donutSize, endDeg);
+ var endInner = Utils$1.polarToCartesian(me.centerX, me.centerY, me.donutSize, startDeg);
+ var largeArc = angle > 180 ? 1 : 0;
+ var pathBeginning = ['M', x1, y1, 'A', size, size, 0, largeArc, 1, x2, y2];
+
+ if (me.chartType === 'donut') {
+ path = [].concat(pathBeginning, ['L', startInner.x, startInner.y, 'A', me.donutSize, me.donutSize, 0, largeArc, 0, endInner.x, endInner.y, 'L', x1, y1, 'z']).join(' ');
+ } else if (me.chartType === 'pie' || me.chartType === 'polarArea') {
+ path = [].concat(pathBeginning, ['L', me.centerX, me.centerY, 'L', x1, y1]).join(' ');
+ } else {
+ path = [].concat(pathBeginning).join(' ');
+ }
+
+ return graphics.roundPathCorners(path, this.strokeWidth * 2);
+ }
+ }, {
+ key: "drawPolarElements",
+ value: function drawPolarElements(parent) {
+ var w = this.w;
+ var scale = new Scales(this.ctx);
+ var graphics = new Graphics(this.ctx);
+ var helpers = new CircularChartsHelpers(this.ctx);
+ var gCircles = graphics.group();
+ var gYAxis = graphics.group();
+ var yScale = scale.niceScale(0, Math.ceil(this.maxY), 0);
+ var yTexts = yScale.result.reverse();
+ var len = yScale.result.length;
+ this.maxY = yScale.niceMax;
+ var circleSize = w.globals.radialSize;
+ var diff = circleSize / (len - 1);
+
+ for (var i = 0; i < len - 1; i++) {
+ var circle = graphics.drawCircle(circleSize);
+ circle.attr({
+ cx: this.centerX,
+ cy: this.centerY,
+ fill: 'none',
+ 'stroke-width': w.config.plotOptions.polarArea.rings.strokeWidth,
+ stroke: w.config.plotOptions.polarArea.rings.strokeColor
+ });
+
+ if (w.config.yaxis[0].show) {
+ var yLabel = helpers.drawYAxisTexts(this.centerX, this.centerY - circleSize + parseInt(w.config.yaxis[0].labels.style.fontSize, 10) / 2, i, yTexts[i]);
+ gYAxis.add(yLabel);
+ }
+
+ gCircles.add(circle);
+ circleSize = circleSize - diff;
+ }
+
+ this.drawSpokes(parent);
+ parent.add(gCircles);
+ parent.add(gYAxis);
+ }
+ }, {
+ key: "renderInnerDataLabels",
+ value: function renderInnerDataLabels(dataLabelsConfig, opts) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var g = graphics.group({
+ class: 'apexcharts-datalabels-group',
+ transform: "translate(".concat(opts.translateX ? opts.translateX : 0, ", ").concat(opts.translateY ? opts.translateY : 0, ") scale(").concat(w.config.plotOptions.pie.customScale, ")")
+ });
+ var showTotal = dataLabelsConfig.total.show;
+ g.node.style.opacity = opts.opacity;
+ var x = opts.centerX;
+ var y = opts.centerY;
+ var labelColor, valueColor;
+
+ if (dataLabelsConfig.name.color === undefined) {
+ labelColor = w.globals.colors[0];
+ } else {
+ labelColor = dataLabelsConfig.name.color;
+ }
+
+ var labelFontSize = dataLabelsConfig.name.fontSize;
+ var labelFontFamily = dataLabelsConfig.name.fontFamily;
+ var labelFontWeight = dataLabelsConfig.name.fontWeight;
+
+ if (dataLabelsConfig.value.color === undefined) {
+ valueColor = w.config.chart.foreColor;
+ } else {
+ valueColor = dataLabelsConfig.value.color;
+ }
+
+ var lbFormatter = dataLabelsConfig.value.formatter;
+ var val = '';
+ var name = '';
+
+ if (showTotal) {
+ labelColor = dataLabelsConfig.total.color;
+ labelFontSize = dataLabelsConfig.total.fontSize;
+ labelFontFamily = dataLabelsConfig.total.fontFamily;
+ labelFontWeight = dataLabelsConfig.total.fontWeight;
+ name = dataLabelsConfig.total.label;
+ val = dataLabelsConfig.total.formatter(w);
+ } else {
+ if (w.globals.series.length === 1) {
+ val = lbFormatter(w.globals.series[0], w);
+ name = w.globals.seriesNames[0];
+ }
+ }
+
+ if (name) {
+ name = dataLabelsConfig.name.formatter(name, dataLabelsConfig.total.show, w);
+ }
+
+ if (dataLabelsConfig.name.show) {
+ var elLabel = graphics.drawText({
+ x: x,
+ y: y + parseFloat(dataLabelsConfig.name.offsetY),
+ text: name,
+ textAnchor: 'middle',
+ foreColor: labelColor,
+ fontSize: labelFontSize,
+ fontWeight: labelFontWeight,
+ fontFamily: labelFontFamily
+ });
+ elLabel.node.classList.add('apexcharts-datalabel-label');
+ g.add(elLabel);
+ }
+
+ if (dataLabelsConfig.value.show) {
+ var valOffset = dataLabelsConfig.name.show ? parseFloat(dataLabelsConfig.value.offsetY) + 16 : dataLabelsConfig.value.offsetY;
+ var elValue = graphics.drawText({
+ x: x,
+ y: y + valOffset,
+ text: val,
+ textAnchor: 'middle',
+ foreColor: valueColor,
+ fontWeight: dataLabelsConfig.value.fontWeight,
+ fontSize: dataLabelsConfig.value.fontSize,
+ fontFamily: dataLabelsConfig.value.fontFamily
+ });
+ elValue.node.classList.add('apexcharts-datalabel-value');
+ g.add(elValue);
+ } // for a multi-series circle chart, we need to show total value instead of first series labels
+
+
+ return g;
+ }
+ /**
+ *
+ * @param {string} name - The name of the series
+ * @param {string} val - The value of that series
+ * @param {object} el - Optional el (indicates which series was hovered/clicked). If this param is not present, means we need to show total
+ */
+
+ }, {
+ key: "printInnerLabels",
+ value: function printInnerLabels(labelsConfig, name, val, el) {
+ var w = this.w;
+ var labelColor;
+
+ if (el) {
+ if (labelsConfig.name.color === undefined) {
+ labelColor = w.globals.colors[parseInt(el.parentNode.getAttribute('rel'), 10) - 1];
+ } else {
+ labelColor = labelsConfig.name.color;
+ }
+ } else {
+ if (w.globals.series.length > 1 && labelsConfig.total.show) {
+ labelColor = labelsConfig.total.color;
+ }
+ }
+
+ var elLabel = w.globals.dom.baseEl.querySelector('.apexcharts-datalabel-label');
+ var elValue = w.globals.dom.baseEl.querySelector('.apexcharts-datalabel-value');
+ var lbFormatter = labelsConfig.value.formatter;
+ val = lbFormatter(val, w); // we need to show Total Val - so get the formatter of it
+
+ if (!el && typeof labelsConfig.total.formatter === 'function') {
+ val = labelsConfig.total.formatter(w);
+ }
+
+ var isTotal = name === labelsConfig.total.label;
+ name = labelsConfig.name.formatter(name, isTotal, w);
+
+ if (elLabel !== null) {
+ elLabel.textContent = name;
+ }
+
+ if (elValue !== null) {
+ elValue.textContent = val;
+ }
+
+ if (elLabel !== null) {
+ elLabel.style.fill = labelColor;
+ }
+ }
+ }, {
+ key: "printDataLabelsInner",
+ value: function printDataLabelsInner(el, dataLabelsConfig) {
+ var w = this.w;
+ var val = el.getAttribute('data:value');
+ var name = w.globals.seriesNames[parseInt(el.parentNode.getAttribute('rel'), 10) - 1];
+
+ if (w.globals.series.length > 1) {
+ this.printInnerLabels(dataLabelsConfig, name, val, el);
+ }
+
+ var dataLabelsGroup = w.globals.dom.baseEl.querySelector('.apexcharts-datalabels-group');
+
+ if (dataLabelsGroup !== null) {
+ dataLabelsGroup.style.opacity = 1;
+ }
+ }
+ }, {
+ key: "drawSpokes",
+ value: function drawSpokes(parent) {
+ var _this2 = this;
+
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var spokeConfig = w.config.plotOptions.polarArea.spokes;
+ if (spokeConfig.strokeWidth === 0) return;
+ var spokes = [];
+ var angleDivision = 360 / w.globals.series.length;
+
+ for (var i = 0; i < w.globals.series.length; i++) {
+ spokes.push(Utils$1.polarToCartesian(this.centerX, this.centerY, w.globals.radialSize, w.config.plotOptions.pie.startAngle + angleDivision * i));
+ }
+
+ spokes.forEach(function (p, i) {
+ var line = graphics.drawLine(p.x, p.y, _this2.centerX, _this2.centerY, Array.isArray(spokeConfig.connectorColors) ? spokeConfig.connectorColors[i] : spokeConfig.connectorColors);
+ parent.add(line);
+ });
+ }
+ }, {
+ key: "revertDataLabelsInner",
+ value: function revertDataLabelsInner(elem, dataLabelsConfig, event) {
+ var _this3 = this;
+
+ var w = this.w;
+ var dataLabelsGroup = w.globals.dom.baseEl.querySelector('.apexcharts-datalabels-group');
+ var sliceOut = false;
+ var slices = w.globals.dom.baseEl.getElementsByClassName("apexcharts-pie-area");
+
+ var selectSlice = function selectSlice(_ref2) {
+ var makeSliceOut = _ref2.makeSliceOut,
+ printLabel = _ref2.printLabel;
+ Array.prototype.forEach.call(slices, function (s) {
+ if (s.getAttribute('data:pieClicked') === 'true') {
+ if (makeSliceOut) {
+ sliceOut = true;
+ }
+
+ if (printLabel) {
+ _this3.printDataLabelsInner(s, dataLabelsConfig);
+ }
+ }
+ });
+ };
+
+ selectSlice({
+ makeSliceOut: true,
+ printLabel: false
+ });
+
+ if (dataLabelsConfig.total.show && w.globals.series.length > 1) {
+ if (sliceOut && !dataLabelsConfig.total.showAlways) {
+ selectSlice({
+ makeSliceOut: false,
+ printLabel: true
+ });
+ } else {
+ this.printInnerLabels(dataLabelsConfig, dataLabelsConfig.total.label, dataLabelsConfig.total.formatter(w));
+ }
+ } else {
+ selectSlice({
+ makeSliceOut: false,
+ printLabel: true
+ });
+
+ if (!sliceOut) {
+ if (w.globals.selectedDataPoints.length && w.globals.series.length > 1) {
+ if (w.globals.selectedDataPoints[0].length > 0) {
+ var index = w.globals.selectedDataPoints[0];
+ var el = w.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(), "-slice-").concat(index));
+ this.printDataLabelsInner(el, dataLabelsConfig);
+ } else if (dataLabelsGroup && w.globals.selectedDataPoints.length && w.globals.selectedDataPoints[0].length === 0) {
+ dataLabelsGroup.style.opacity = 0;
+ }
+ } else {
+ if (dataLabelsGroup && w.globals.series.length > 1) {
+ dataLabelsGroup.style.opacity = 0;
+ }
+ }
+ }
+ }
+ }
+ }]);
+
+ return Pie;
+ }();
+
+ /**
+ * ApexCharts Radar Class for Spider/Radar Charts.
+ * @module Radar
+ **/
+
+ var Radar = /*#__PURE__*/function () {
+ function Radar(ctx) {
+ _classCallCheck(this, Radar);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.chartType = this.w.config.chart.type;
+ this.initialAnim = this.w.config.chart.animations.enabled;
+ this.dynamicAnim = this.initialAnim && this.w.config.chart.animations.dynamicAnimation.enabled;
+ this.animDur = 0;
+ var w = this.w;
+ this.graphics = new Graphics(this.ctx);
+ this.lineColorArr = w.globals.stroke.colors !== undefined ? w.globals.stroke.colors : w.globals.colors;
+ this.defaultSize = w.globals.svgHeight < w.globals.svgWidth ? w.globals.gridHeight + w.globals.goldenPadding * 1.5 : w.globals.gridWidth;
+ this.isLog = w.config.yaxis[0].logarithmic;
+ this.logBase = w.config.yaxis[0].logBase;
+ this.coreUtils = new CoreUtils(this.ctx);
+ this.maxValue = this.isLog ? this.coreUtils.getLogVal(this.logBase, w.globals.maxY, 0) : w.globals.maxY;
+ this.minValue = this.isLog ? this.coreUtils.getLogVal(this.logBase, this.w.globals.minY, 0) : w.globals.minY;
+ this.polygons = w.config.plotOptions.radar.polygons;
+ this.strokeWidth = w.config.stroke.show ? w.config.stroke.width : 0;
+ this.size = this.defaultSize / 2.1 - this.strokeWidth - w.config.chart.dropShadow.blur;
+
+ if (w.config.xaxis.labels.show) {
+ this.size = this.size - w.globals.xAxisLabelsWidth / 1.75;
+ }
+
+ if (w.config.plotOptions.radar.size !== undefined) {
+ this.size = w.config.plotOptions.radar.size;
+ }
+
+ this.dataRadiusOfPercent = [];
+ this.dataRadius = [];
+ this.angleArr = [];
+ this.yaxisLabelsTextsPos = [];
+ }
+
+ _createClass(Radar, [{
+ key: "draw",
+ value: function draw(series) {
+ var _this = this;
+
+ var w = this.w;
+ var fill = new Fill(this.ctx);
+ var allSeries = [];
+ var dataLabels = new DataLabels(this.ctx);
+
+ if (series.length) {
+ this.dataPointsLen = series[w.globals.maxValsInArrayIndex].length;
+ }
+
+ this.disAngle = Math.PI * 2 / this.dataPointsLen;
+ var halfW = w.globals.gridWidth / 2;
+ var halfH = w.globals.gridHeight / 2;
+ var translateX = halfW + w.config.plotOptions.radar.offsetX;
+ var translateY = halfH + w.config.plotOptions.radar.offsetY;
+ var ret = this.graphics.group({
+ class: 'apexcharts-radar-series apexcharts-plot-series',
+ transform: "translate(".concat(translateX || 0, ", ").concat(translateY || 0, ")")
+ });
+ var dataPointsPos = [];
+ var elPointsMain = null;
+ var elDataPointsMain = null;
+ this.yaxisLabels = this.graphics.group({
+ class: 'apexcharts-yaxis'
+ });
+ series.forEach(function (s, i) {
+ var longestSeries = s.length === w.globals.dataPoints; // el to which series will be drawn
+
+ var elSeries = _this.graphics.group().attr({
+ class: "apexcharts-series",
+ 'data:longestSeries': longestSeries,
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[i]),
+ rel: i + 1,
+ 'data:realIndex': i
+ });
+
+ _this.dataRadiusOfPercent[i] = [];
+ _this.dataRadius[i] = [];
+ _this.angleArr[i] = [];
+ s.forEach(function (dv, j) {
+ var range = Math.abs(_this.maxValue - _this.minValue);
+ dv = dv + Math.abs(_this.minValue);
+
+ if (_this.isLog) {
+ dv = _this.coreUtils.getLogVal(_this.logBase, dv, 0);
+ }
+
+ _this.dataRadiusOfPercent[i][j] = dv / range;
+ _this.dataRadius[i][j] = _this.dataRadiusOfPercent[i][j] * _this.size;
+ _this.angleArr[i][j] = j * _this.disAngle;
+ });
+ dataPointsPos = _this.getDataPointsPos(_this.dataRadius[i], _this.angleArr[i]);
+
+ var paths = _this.createPaths(dataPointsPos, {
+ x: 0,
+ y: 0
+ }); // points
+
+
+ elPointsMain = _this.graphics.group({
+ class: 'apexcharts-series-markers-wrap apexcharts-element-hidden'
+ }); // datapoints
+
+ elDataPointsMain = _this.graphics.group({
+ class: "apexcharts-datalabels",
+ 'data:realIndex': i
+ });
+ w.globals.delayedElements.push({
+ el: elPointsMain.node,
+ index: i
+ });
+ var defaultRenderedPathOptions = {
+ i: i,
+ realIndex: i,
+ animationDelay: i,
+ initialSpeed: w.config.chart.animations.speed,
+ dataChangeSpeed: w.config.chart.animations.dynamicAnimation.speed,
+ className: "apexcharts-radar",
+ shouldClipToGrid: false,
+ bindEventsOnPaths: false,
+ stroke: w.globals.stroke.colors[i],
+ strokeLineCap: w.config.stroke.lineCap
+ };
+ var pathFrom = null;
+
+ if (w.globals.previousPaths.length > 0) {
+ pathFrom = _this.getPreviousPath(i);
+ }
+
+ for (var p = 0; p < paths.linePathsTo.length; p++) {
+ var renderedLinePath = _this.graphics.renderPaths(_objectSpread2(_objectSpread2({}, defaultRenderedPathOptions), {}, {
+ pathFrom: pathFrom === null ? paths.linePathsFrom[p] : pathFrom,
+ pathTo: paths.linePathsTo[p],
+ strokeWidth: Array.isArray(_this.strokeWidth) ? _this.strokeWidth[i] : _this.strokeWidth,
+ fill: 'none',
+ drawShadow: false
+ }));
+
+ elSeries.add(renderedLinePath);
+ var pathFill = fill.fillPath({
+ seriesNumber: i
+ });
+
+ var renderedAreaPath = _this.graphics.renderPaths(_objectSpread2(_objectSpread2({}, defaultRenderedPathOptions), {}, {
+ pathFrom: pathFrom === null ? paths.areaPathsFrom[p] : pathFrom,
+ pathTo: paths.areaPathsTo[p],
+ strokeWidth: 0,
+ fill: pathFill,
+ drawShadow: false
+ }));
+
+ if (w.config.chart.dropShadow.enabled) {
+ var filters = new Filters(_this.ctx);
+ var shadow = w.config.chart.dropShadow;
+ filters.dropShadow(renderedAreaPath, Object.assign({}, shadow, {
+ noUserSpaceOnUse: true
+ }), i);
+ }
+
+ elSeries.add(renderedAreaPath);
+ }
+
+ s.forEach(function (sj, j) {
+ var markers = new Markers(_this.ctx);
+ var opts = markers.getMarkerConfig({
+ cssClass: 'apexcharts-marker',
+ seriesIndex: i,
+ dataPointIndex: j
+ });
+
+ var point = _this.graphics.drawMarker(dataPointsPos[j].x, dataPointsPos[j].y, opts);
+
+ point.attr('rel', j);
+ point.attr('j', j);
+ point.attr('index', i);
+ point.node.setAttribute('default-marker-size', opts.pSize);
+
+ var elPointsWrap = _this.graphics.group({
+ class: 'apexcharts-series-markers'
+ });
+
+ if (elPointsWrap) {
+ elPointsWrap.add(point);
+ }
+
+ elPointsMain.add(elPointsWrap);
+ elSeries.add(elPointsMain);
+ var dataLabelsConfig = w.config.dataLabels;
+
+ if (dataLabelsConfig.enabled) {
+ var text = dataLabelsConfig.formatter(w.globals.series[i][j], {
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ });
+ dataLabels.plotDataLabelsText({
+ x: dataPointsPos[j].x,
+ y: dataPointsPos[j].y,
+ text: text,
+ textAnchor: 'middle',
+ i: i,
+ j: i,
+ parent: elDataPointsMain,
+ offsetCorrection: false,
+ dataLabelsConfig: _objectSpread2({}, dataLabelsConfig)
+ });
+ }
+
+ elSeries.add(elDataPointsMain);
+ });
+ allSeries.push(elSeries);
+ });
+ this.drawPolygons({
+ parent: ret
+ });
+
+ if (w.config.xaxis.labels.show) {
+ var xaxisTexts = this.drawXAxisTexts();
+ ret.add(xaxisTexts);
+ }
+
+ allSeries.forEach(function (elS) {
+ ret.add(elS);
+ });
+ ret.add(this.yaxisLabels);
+ return ret;
+ }
+ }, {
+ key: "drawPolygons",
+ value: function drawPolygons(opts) {
+ var _this2 = this;
+
+ var w = this.w;
+ var parent = opts.parent;
+ var helpers = new CircularChartsHelpers(this.ctx);
+ var yaxisTexts = w.globals.yAxisScale[0].result.reverse();
+ var layers = yaxisTexts.length;
+ var radiusSizes = [];
+ var layerDis = this.size / (layers - 1);
+
+ for (var i = 0; i < layers; i++) {
+ radiusSizes[i] = layerDis * i;
+ }
+
+ radiusSizes.reverse();
+ var polygonStrings = [];
+ var lines = [];
+ radiusSizes.forEach(function (radiusSize, r) {
+ var polygon = Utils$1.getPolygonPos(radiusSize, _this2.dataPointsLen);
+ var string = '';
+ polygon.forEach(function (p, i) {
+ if (r === 0) {
+ var line = _this2.graphics.drawLine(p.x, p.y, 0, 0, Array.isArray(_this2.polygons.connectorColors) ? _this2.polygons.connectorColors[i] : _this2.polygons.connectorColors);
+
+ lines.push(line);
+ }
+
+ if (i === 0) {
+ _this2.yaxisLabelsTextsPos.push({
+ x: p.x,
+ y: p.y
+ });
+ }
+
+ string += p.x + ',' + p.y + ' ';
+ });
+ polygonStrings.push(string);
+ });
+ polygonStrings.forEach(function (p, i) {
+ var strokeColors = _this2.polygons.strokeColors;
+ var strokeWidth = _this2.polygons.strokeWidth;
+
+ var polygon = _this2.graphics.drawPolygon(p, Array.isArray(strokeColors) ? strokeColors[i] : strokeColors, Array.isArray(strokeWidth) ? strokeWidth[i] : strokeWidth, w.globals.radarPolygons.fill.colors[i]);
+
+ parent.add(polygon);
+ });
+ lines.forEach(function (l) {
+ parent.add(l);
+ });
+
+ if (w.config.yaxis[0].show) {
+ this.yaxisLabelsTextsPos.forEach(function (p, i) {
+ var yText = helpers.drawYAxisTexts(p.x, p.y, i, yaxisTexts[i]);
+
+ _this2.yaxisLabels.add(yText);
+ });
+ }
+ }
+ }, {
+ key: "drawXAxisTexts",
+ value: function drawXAxisTexts() {
+ var _this3 = this;
+
+ var w = this.w;
+ var xaxisLabelsConfig = w.config.xaxis.labels;
+ var elXAxisWrap = this.graphics.group({
+ class: 'apexcharts-xaxis'
+ });
+ var polygonPos = Utils$1.getPolygonPos(this.size, this.dataPointsLen);
+ w.globals.labels.forEach(function (label, i) {
+ var formatter = w.config.xaxis.labels.formatter;
+ var dataLabels = new DataLabels(_this3.ctx);
+
+ if (polygonPos[i]) {
+ var textPos = _this3.getTextPos(polygonPos[i], _this3.size);
+
+ var text = formatter(label, {
+ seriesIndex: -1,
+ dataPointIndex: i,
+ w: w
+ });
+ dataLabels.plotDataLabelsText({
+ x: textPos.newX,
+ y: textPos.newY,
+ text: text,
+ textAnchor: textPos.textAnchor,
+ i: i,
+ j: i,
+ parent: elXAxisWrap,
+ color: Array.isArray(xaxisLabelsConfig.style.colors) && xaxisLabelsConfig.style.colors[i] ? xaxisLabelsConfig.style.colors[i] : '#a8a8a8',
+ dataLabelsConfig: _objectSpread2({
+ textAnchor: textPos.textAnchor,
+ dropShadow: {
+ enabled: false
+ }
+ }, xaxisLabelsConfig),
+ offsetCorrection: false
+ });
+ }
+ });
+ return elXAxisWrap;
+ }
+ }, {
+ key: "createPaths",
+ value: function createPaths(pos, origin) {
+ var _this4 = this;
+
+ var linePathsTo = [];
+ var linePathsFrom = [];
+ var areaPathsTo = [];
+ var areaPathsFrom = [];
+
+ if (pos.length) {
+ linePathsFrom = [this.graphics.move(origin.x, origin.y)];
+ areaPathsFrom = [this.graphics.move(origin.x, origin.y)];
+ var linePathTo = this.graphics.move(pos[0].x, pos[0].y);
+ var areaPathTo = this.graphics.move(pos[0].x, pos[0].y);
+ pos.forEach(function (p, i) {
+ linePathTo += _this4.graphics.line(p.x, p.y);
+ areaPathTo += _this4.graphics.line(p.x, p.y);
+
+ if (i === pos.length - 1) {
+ linePathTo += 'Z';
+ areaPathTo += 'Z';
+ }
+ });
+ linePathsTo.push(linePathTo);
+ areaPathsTo.push(areaPathTo);
+ }
+
+ return {
+ linePathsFrom: linePathsFrom,
+ linePathsTo: linePathsTo,
+ areaPathsFrom: areaPathsFrom,
+ areaPathsTo: areaPathsTo
+ };
+ }
+ }, {
+ key: "getTextPos",
+ value: function getTextPos(pos, polygonSize) {
+ var limit = 10;
+ var textAnchor = 'middle';
+ var newX = pos.x;
+ var newY = pos.y;
+
+ if (Math.abs(pos.x) >= limit) {
+ if (pos.x > 0) {
+ textAnchor = 'start';
+ newX += 10;
+ } else if (pos.x < 0) {
+ textAnchor = 'end';
+ newX -= 10;
+ }
+ } else {
+ textAnchor = 'middle';
+ }
+
+ if (Math.abs(pos.y) >= polygonSize - limit) {
+ if (pos.y < 0) {
+ newY -= 10;
+ } else if (pos.y > 0) {
+ newY += 10;
+ }
+ }
+
+ return {
+ textAnchor: textAnchor,
+ newX: newX,
+ newY: newY
+ };
+ }
+ }, {
+ key: "getPreviousPath",
+ value: function getPreviousPath(realIndex) {
+ var w = this.w;
+ var pathFrom = null;
+
+ for (var pp = 0; pp < w.globals.previousPaths.length; pp++) {
+ var gpp = w.globals.previousPaths[pp];
+
+ if (gpp.paths.length > 0 && parseInt(gpp.realIndex, 10) === parseInt(realIndex, 10)) {
+ if (typeof w.globals.previousPaths[pp].paths[0] !== 'undefined') {
+ pathFrom = w.globals.previousPaths[pp].paths[0].d;
+ }
+ }
+ }
+
+ return pathFrom;
+ }
+ }, {
+ key: "getDataPointsPos",
+ value: function getDataPointsPos(dataRadiusArr, angleArr) {
+ var dataPointsLen = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.dataPointsLen;
+ dataRadiusArr = dataRadiusArr || [];
+ angleArr = angleArr || [];
+ var dataPointsPosArray = [];
+
+ for (var j = 0; j < dataPointsLen; j++) {
+ var curPointPos = {};
+ curPointPos.x = dataRadiusArr[j] * Math.sin(angleArr[j]);
+ curPointPos.y = -dataRadiusArr[j] * Math.cos(angleArr[j]);
+ dataPointsPosArray.push(curPointPos);
+ }
+
+ return dataPointsPosArray;
+ }
+ }]);
+
+ return Radar;
+ }();
+
+ /**
+ * ApexCharts Radial Class for drawing Circle / Semi Circle Charts.
+ * @module Radial
+ **/
+
+ var Radial = /*#__PURE__*/function (_Pie) {
+ _inherits(Radial, _Pie);
+
+ var _super = _createSuper(Radial);
+
+ function Radial(ctx) {
+ var _this;
+
+ _classCallCheck(this, Radial);
+
+ _this = _super.call(this, ctx);
+ _this.ctx = ctx;
+ _this.w = ctx.w;
+ _this.animBeginArr = [0];
+ _this.animDur = 0;
+ var w = _this.w;
+ _this.startAngle = w.config.plotOptions.radialBar.startAngle;
+ _this.endAngle = w.config.plotOptions.radialBar.endAngle;
+ _this.totalAngle = Math.abs(w.config.plotOptions.radialBar.endAngle - w.config.plotOptions.radialBar.startAngle);
+ _this.trackStartAngle = w.config.plotOptions.radialBar.track.startAngle;
+ _this.trackEndAngle = w.config.plotOptions.radialBar.track.endAngle;
+ _this.barLabels = _this.w.config.plotOptions.radialBar.barLabels;
+ _this.donutDataLabels = _this.w.config.plotOptions.radialBar.dataLabels;
+ _this.radialDataLabels = _this.donutDataLabels; // make a copy for easy reference
+
+ if (!_this.trackStartAngle) _this.trackStartAngle = _this.startAngle;
+ if (!_this.trackEndAngle) _this.trackEndAngle = _this.endAngle;
+ if (_this.endAngle === 360) _this.endAngle = 359.99;
+ _this.margin = parseInt(w.config.plotOptions.radialBar.track.margin, 10);
+ _this.onBarLabelClick = _this.onBarLabelClick.bind(_assertThisInitialized(_this));
+ return _this;
+ }
+
+ _createClass(Radial, [{
+ key: "draw",
+ value: function draw(series) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var ret = graphics.group({
+ class: 'apexcharts-radialbar'
+ });
+ if (w.globals.noData) return ret;
+ var elSeries = graphics.group();
+ var centerY = this.defaultSize / 2;
+ var centerX = w.globals.gridWidth / 2;
+ var size = this.defaultSize / 2.05;
+
+ if (!w.config.chart.sparkline.enabled) {
+ size = size - w.config.stroke.width - w.config.chart.dropShadow.blur;
+ }
+
+ var colorArr = w.globals.fill.colors;
+
+ if (w.config.plotOptions.radialBar.track.show) {
+ var elTracks = this.drawTracks({
+ size: size,
+ centerX: centerX,
+ centerY: centerY,
+ colorArr: colorArr,
+ series: series
+ });
+ elSeries.add(elTracks);
+ }
+
+ var elG = this.drawArcs({
+ size: size,
+ centerX: centerX,
+ centerY: centerY,
+ colorArr: colorArr,
+ series: series
+ });
+ var totalAngle = 360;
+
+ if (w.config.plotOptions.radialBar.startAngle < 0) {
+ totalAngle = this.totalAngle;
+ }
+
+ var angleRatio = (360 - totalAngle) / 360;
+ w.globals.radialSize = size - size * angleRatio;
+
+ if (this.radialDataLabels.value.show) {
+ var offset = Math.max(this.radialDataLabels.value.offsetY, this.radialDataLabels.name.offsetY);
+ w.globals.radialSize += offset * angleRatio;
+ }
+
+ elSeries.add(elG.g);
+
+ if (w.config.plotOptions.radialBar.hollow.position === 'front') {
+ elG.g.add(elG.elHollow);
+
+ if (elG.dataLabels) {
+ elG.g.add(elG.dataLabels);
+ }
+ }
+
+ ret.add(elSeries);
+ return ret;
+ }
+ }, {
+ key: "drawTracks",
+ value: function drawTracks(opts) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var g = graphics.group({
+ class: 'apexcharts-tracks'
+ });
+ var filters = new Filters(this.ctx);
+ var fill = new Fill(this.ctx);
+ var strokeWidth = this.getStrokeWidth(opts);
+ opts.size = opts.size - strokeWidth / 2;
+
+ for (var i = 0; i < opts.series.length; i++) {
+ var elRadialBarTrack = graphics.group({
+ class: 'apexcharts-radialbar-track apexcharts-track'
+ });
+ g.add(elRadialBarTrack);
+ elRadialBarTrack.attr({
+ rel: i + 1
+ });
+ opts.size = opts.size - strokeWidth - this.margin;
+ var trackConfig = w.config.plotOptions.radialBar.track;
+ var pathFill = fill.fillPath({
+ seriesNumber: 0,
+ size: opts.size,
+ fillColors: Array.isArray(trackConfig.background) ? trackConfig.background[i] : trackConfig.background,
+ solid: true
+ });
+ var startAngle = this.trackStartAngle;
+ var endAngle = this.trackEndAngle;
+ if (Math.abs(endAngle) + Math.abs(startAngle) >= 360) endAngle = 360 - Math.abs(this.startAngle) - 0.1;
+ var elPath = graphics.drawPath({
+ d: '',
+ stroke: pathFill,
+ strokeWidth: strokeWidth * parseInt(trackConfig.strokeWidth, 10) / 100,
+ fill: 'none',
+ strokeOpacity: trackConfig.opacity,
+ classes: 'apexcharts-radialbar-area'
+ });
+
+ if (trackConfig.dropShadow.enabled) {
+ var shadow = trackConfig.dropShadow;
+ filters.dropShadow(elPath, shadow);
+ }
+
+ elRadialBarTrack.add(elPath);
+ elPath.attr('id', 'apexcharts-radialbarTrack-' + i);
+ this.animatePaths(elPath, {
+ centerX: opts.centerX,
+ centerY: opts.centerY,
+ endAngle: endAngle,
+ startAngle: startAngle,
+ size: opts.size,
+ i: i,
+ totalItems: 2,
+ animBeginArr: 0,
+ dur: 0,
+ isTrack: true,
+ easing: w.globals.easing
+ });
+ }
+
+ return g;
+ }
+ }, {
+ key: "drawArcs",
+ value: function drawArcs(opts) {
+ var w = this.w; // size, donutSize, centerX, centerY, colorArr, lineColorArr, sectorAngleArr, series
+
+ var graphics = new Graphics(this.ctx);
+ var fill = new Fill(this.ctx);
+ var filters = new Filters(this.ctx);
+ var g = graphics.group();
+ var strokeWidth = this.getStrokeWidth(opts);
+ opts.size = opts.size - strokeWidth / 2;
+ var hollowFillID = w.config.plotOptions.radialBar.hollow.background;
+ var hollowSize = opts.size - strokeWidth * opts.series.length - this.margin * opts.series.length - strokeWidth * parseInt(w.config.plotOptions.radialBar.track.strokeWidth, 10) / 100 / 2;
+ var hollowRadius = hollowSize - w.config.plotOptions.radialBar.hollow.margin;
+
+ if (w.config.plotOptions.radialBar.hollow.image !== undefined) {
+ hollowFillID = this.drawHollowImage(opts, g, hollowSize, hollowFillID);
+ }
+
+ var elHollow = this.drawHollow({
+ size: hollowRadius,
+ centerX: opts.centerX,
+ centerY: opts.centerY,
+ fill: hollowFillID ? hollowFillID : 'transparent'
+ });
+
+ if (w.config.plotOptions.radialBar.hollow.dropShadow.enabled) {
+ var shadow = w.config.plotOptions.radialBar.hollow.dropShadow;
+ filters.dropShadow(elHollow, shadow);
+ }
+
+ var shown = 1;
+
+ if (!this.radialDataLabels.total.show && w.globals.series.length > 1) {
+ shown = 0;
+ }
+
+ var dataLabels = null;
+
+ if (this.radialDataLabels.show) {
+ dataLabels = this.renderInnerDataLabels(this.radialDataLabels, {
+ hollowSize: hollowSize,
+ centerX: opts.centerX,
+ centerY: opts.centerY,
+ opacity: shown
+ });
+ }
+
+ if (w.config.plotOptions.radialBar.hollow.position === 'back') {
+ g.add(elHollow);
+
+ if (dataLabels) {
+ g.add(dataLabels);
+ }
+ }
+
+ var reverseLoop = false;
+
+ if (w.config.plotOptions.radialBar.inverseOrder) {
+ reverseLoop = true;
+ }
+
+ for (var i = reverseLoop ? opts.series.length - 1 : 0; reverseLoop ? i >= 0 : i < opts.series.length; reverseLoop ? i-- : i++) {
+ var elRadialBarArc = graphics.group({
+ class: "apexcharts-series apexcharts-radial-series",
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[i])
+ });
+ g.add(elRadialBarArc);
+ elRadialBarArc.attr({
+ rel: i + 1,
+ 'data:realIndex': i
+ });
+ this.ctx.series.addCollapsedClassToSeries(elRadialBarArc, i);
+ opts.size = opts.size - strokeWidth - this.margin;
+ var pathFill = fill.fillPath({
+ seriesNumber: i,
+ size: opts.size,
+ value: opts.series[i]
+ });
+ var startAngle = this.startAngle;
+ var prevStartAngle = void 0; // if data exceeds 100, make it 100
+
+ var dataValue = Utils$1.negToZero(opts.series[i] > 100 ? 100 : opts.series[i]) / 100;
+ var endAngle = Math.round(this.totalAngle * dataValue) + this.startAngle;
+ var prevEndAngle = void 0;
+
+ if (w.globals.dataChanged) {
+ prevStartAngle = this.startAngle;
+ prevEndAngle = Math.round(this.totalAngle * Utils$1.negToZero(w.globals.previousPaths[i]) / 100) + prevStartAngle;
+ }
+
+ var currFullAngle = Math.abs(endAngle) + Math.abs(startAngle);
+
+ if (currFullAngle >= 360) {
+ endAngle = endAngle - 0.01;
+ }
+
+ var prevFullAngle = Math.abs(prevEndAngle) + Math.abs(prevStartAngle);
+
+ if (prevFullAngle >= 360) {
+ prevEndAngle = prevEndAngle - 0.01;
+ }
+
+ var angle = endAngle - startAngle;
+ var dashArray = Array.isArray(w.config.stroke.dashArray) ? w.config.stroke.dashArray[i] : w.config.stroke.dashArray;
+ var elPath = graphics.drawPath({
+ d: '',
+ stroke: pathFill,
+ strokeWidth: strokeWidth,
+ fill: 'none',
+ fillOpacity: w.config.fill.opacity,
+ classes: 'apexcharts-radialbar-area apexcharts-radialbar-slice-' + i,
+ strokeDashArray: dashArray
+ });
+ Graphics.setAttrs(elPath.node, {
+ 'data:angle': angle,
+ 'data:value': opts.series[i]
+ });
+
+ if (w.config.chart.dropShadow.enabled) {
+ var _shadow = w.config.chart.dropShadow;
+ filters.dropShadow(elPath, _shadow, i);
+ }
+
+ filters.setSelectionFilter(elPath, 0, i);
+ this.addListeners(elPath, this.radialDataLabels);
+ elRadialBarArc.add(elPath);
+ elPath.attr({
+ index: 0,
+ j: i
+ });
+
+ if (this.barLabels.enabled) {
+ var barStartCords = Utils$1.polarToCartesian(opts.centerX, opts.centerY, opts.size, startAngle);
+ var text = this.barLabels.formatter(w.globals.seriesNames[i], {
+ seriesIndex: i,
+ w: w
+ });
+ var classes = ['apexcharts-radialbar-label'];
+
+ if (!this.barLabels.onClick) {
+ classes.push('apexcharts-no-click');
+ }
+
+ var textColor = this.barLabels.useSeriesColors ? w.globals.colors[i] : w.config.chart.foreColor;
+
+ if (!textColor) {
+ textColor = w.config.chart.foreColor;
+ }
+
+ var x = barStartCords.x - this.barLabels.margin;
+ var y = barStartCords.y;
+ var elText = graphics.drawText({
+ x: x,
+ y: y,
+ text: text,
+ textAnchor: 'end',
+ dominantBaseline: 'middle',
+ fontFamily: this.barLabels.fontFamily,
+ fontWeight: this.barLabels.fontWeight,
+ fontSize: this.barLabels.fontSize,
+ foreColor: textColor,
+ cssClass: classes.join(' ')
+ });
+ elText.on('click', this.onBarLabelClick);
+ elText.attr({
+ rel: i + 1
+ });
+
+ if (startAngle !== 0) {
+ elText.attr({
+ 'transform-origin': "".concat(x, " ").concat(y),
+ transform: "rotate(".concat(startAngle, " 0 0)")
+ });
+ }
+
+ elRadialBarArc.add(elText);
+ }
+
+ var dur = 0;
+
+ if (this.initialAnim && !w.globals.resized && !w.globals.dataChanged) {
+ dur = w.config.chart.animations.speed;
+ }
+
+ if (w.globals.dataChanged) {
+ dur = w.config.chart.animations.dynamicAnimation.speed;
+ }
+
+ this.animDur = dur / (opts.series.length * 1.2) + this.animDur;
+ this.animBeginArr.push(this.animDur);
+ this.animatePaths(elPath, {
+ centerX: opts.centerX,
+ centerY: opts.centerY,
+ endAngle: endAngle,
+ startAngle: startAngle,
+ prevEndAngle: prevEndAngle,
+ prevStartAngle: prevStartAngle,
+ size: opts.size,
+ i: i,
+ totalItems: 2,
+ animBeginArr: this.animBeginArr,
+ dur: dur,
+ shouldSetPrevPaths: true,
+ easing: w.globals.easing
+ });
+ }
+
+ return {
+ g: g,
+ elHollow: elHollow,
+ dataLabels: dataLabels
+ };
+ }
+ }, {
+ key: "drawHollow",
+ value: function drawHollow(opts) {
+ var graphics = new Graphics(this.ctx);
+ var circle = graphics.drawCircle(opts.size * 2);
+ circle.attr({
+ class: 'apexcharts-radialbar-hollow',
+ cx: opts.centerX,
+ cy: opts.centerY,
+ r: opts.size,
+ fill: opts.fill
+ });
+ return circle;
+ }
+ }, {
+ key: "drawHollowImage",
+ value: function drawHollowImage(opts, g, hollowSize, hollowFillID) {
+ var w = this.w;
+ var fill = new Fill(this.ctx);
+ var randID = Utils$1.randomId();
+ var hollowFillImg = w.config.plotOptions.radialBar.hollow.image;
+
+ if (w.config.plotOptions.radialBar.hollow.imageClipped) {
+ fill.clippedImgArea({
+ width: hollowSize,
+ height: hollowSize,
+ image: hollowFillImg,
+ patternID: "pattern".concat(w.globals.cuid).concat(randID)
+ });
+ hollowFillID = "url(#pattern".concat(w.globals.cuid).concat(randID, ")");
+ } else {
+ var imgWidth = w.config.plotOptions.radialBar.hollow.imageWidth;
+ var imgHeight = w.config.plotOptions.radialBar.hollow.imageHeight;
+
+ if (imgWidth === undefined && imgHeight === undefined) {
+ var image = w.globals.dom.Paper.image(hollowFillImg).loaded(function (loader) {
+ this.move(opts.centerX - loader.width / 2 + w.config.plotOptions.radialBar.hollow.imageOffsetX, opts.centerY - loader.height / 2 + w.config.plotOptions.radialBar.hollow.imageOffsetY);
+ });
+ g.add(image);
+ } else {
+ var _image = w.globals.dom.Paper.image(hollowFillImg).loaded(function (loader) {
+ this.move(opts.centerX - imgWidth / 2 + w.config.plotOptions.radialBar.hollow.imageOffsetX, opts.centerY - imgHeight / 2 + w.config.plotOptions.radialBar.hollow.imageOffsetY);
+ this.size(imgWidth, imgHeight);
+ });
+
+ g.add(_image);
+ }
+ }
+
+ return hollowFillID;
+ }
+ }, {
+ key: "getStrokeWidth",
+ value: function getStrokeWidth(opts) {
+ var w = this.w;
+ return opts.size * (100 - parseInt(w.config.plotOptions.radialBar.hollow.size, 10)) / 100 / (opts.series.length + 1) - this.margin;
+ }
+ }, {
+ key: "onBarLabelClick",
+ value: function onBarLabelClick(e) {
+ var seriesIndex = parseInt(e.target.getAttribute('rel'), 10) - 1;
+ var legendClick = this.barLabels.onClick;
+ var w = this.w;
+
+ if (legendClick) {
+ legendClick(w.globals.seriesNames[seriesIndex], {
+ w: w,
+ seriesIndex: seriesIndex
+ });
+ }
+ }
+ }]);
+
+ return Radial;
+ }(Pie);
+
+ /**
+ * ApexCharts RangeBar Class responsible for drawing Range/Timeline Bars.
+ *
+ * @module RangeBar
+ **/
+
+ var RangeBar = /*#__PURE__*/function (_Bar) {
+ _inherits(RangeBar, _Bar);
+
+ var _super = _createSuper(RangeBar);
+
+ function RangeBar() {
+ _classCallCheck(this, RangeBar);
+
+ return _super.apply(this, arguments);
+ }
+
+ _createClass(RangeBar, [{
+ key: "draw",
+ value: function draw(series, seriesIndex) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ this.rangeBarOptions = this.w.config.plotOptions.rangeBar;
+ this.series = series;
+ this.seriesRangeStart = w.globals.seriesRangeStart;
+ this.seriesRangeEnd = w.globals.seriesRangeEnd;
+ this.barHelpers.initVariables(series);
+ var ret = graphics.group({
+ class: 'apexcharts-rangebar-series apexcharts-plot-series'
+ });
+
+ for (var i = 0; i < series.length; i++) {
+ var x = void 0,
+ y = void 0,
+ xDivision = void 0,
+ // xDivision is the GRIDWIDTH divided by number of datapoints (columns)
+ yDivision = void 0,
+ // yDivision is the GRIDHEIGHT divided by number of datapoints (bars)
+ zeroH = void 0,
+ // zeroH is the baseline where 0 meets y axis
+ zeroW = void 0; // zeroW is the baseline where 0 meets x axis
+
+ var realIndex = w.globals.comboCharts ? seriesIndex[i] : i; // el to which series will be drawn
+
+ var elSeries = graphics.group({
+ class: "apexcharts-series",
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[realIndex]),
+ rel: i + 1,
+ 'data:realIndex': realIndex
+ });
+ this.ctx.series.addCollapsedClassToSeries(elSeries, realIndex);
+
+ if (series[i].length > 0) {
+ this.visibleI = this.visibleI + 1;
+ }
+
+ var barHeight = 0;
+ var barWidth = 0;
+ var translationsIndex = 0;
+
+ if (this.yRatio.length > 1) {
+ this.yaxisIndex = w.globals.seriesYAxisReverseMap[realIndex][0];
+ translationsIndex = realIndex;
+ }
+
+ var initPositions = this.barHelpers.initialPositions();
+ y = initPositions.y;
+ zeroW = initPositions.zeroW;
+ x = initPositions.x;
+ barWidth = initPositions.barWidth;
+ barHeight = initPositions.barHeight;
+ xDivision = initPositions.xDivision;
+ yDivision = initPositions.yDivision;
+ zeroH = initPositions.zeroH; // eldatalabels
+
+ var elDataLabelsWrap = graphics.group({
+ class: 'apexcharts-datalabels',
+ 'data:realIndex': realIndex
+ });
+ var elGoalsMarkers = graphics.group({
+ class: 'apexcharts-rangebar-goals-markers'
+ });
+
+ for (var j = 0; j < w.globals.dataPoints; j++) {
+ var _this$renderSeries;
+
+ var strokeWidth = this.barHelpers.getStrokeWidth(i, j, realIndex);
+ var y1 = this.seriesRangeStart[i][j];
+ var y2 = this.seriesRangeEnd[i][j];
+ var paths = null;
+ var barXPosition = null;
+ var barYPosition = null;
+ var params = {
+ x: x,
+ y: y,
+ strokeWidth: strokeWidth,
+ elSeries: elSeries
+ };
+ var seriesLen = this.seriesLen;
+
+ if (w.config.plotOptions.bar.rangeBarGroupRows) {
+ seriesLen = 1;
+ }
+
+ if (typeof w.config.series[i].data[j] === 'undefined') {
+ // no data exists for further indexes, hence we need to get out the innr loop.
+ // As we are iterating over total datapoints, there is a possiblity the series might not have data for j index
+ break;
+ }
+
+ if (this.isHorizontal) {
+ barYPosition = y + barHeight * this.visibleI;
+ var srty = (yDivision - barHeight * seriesLen) / 2;
+
+ if (w.config.series[i].data[j].x) {
+ var positions = this.detectOverlappingBars({
+ i: i,
+ j: j,
+ barYPosition: barYPosition,
+ srty: srty,
+ barHeight: barHeight,
+ yDivision: yDivision,
+ initPositions: initPositions
+ });
+ barHeight = positions.barHeight;
+ barYPosition = positions.barYPosition;
+ }
+
+ paths = this.drawRangeBarPaths(_objectSpread2({
+ indexes: {
+ i: i,
+ j: j,
+ realIndex: realIndex
+ },
+ barHeight: barHeight,
+ barYPosition: barYPosition,
+ zeroW: zeroW,
+ yDivision: yDivision,
+ y1: y1,
+ y2: y2
+ }, params));
+ barWidth = paths.barWidth;
+ } else {
+ if (w.globals.isXNumeric) {
+ x = (w.globals.seriesX[i][j] - w.globals.minX) / this.xRatio - barWidth / 2;
+ }
+
+ barXPosition = x + barWidth * this.visibleI;
+ var srtx = (xDivision - barWidth * seriesLen) / 2;
+
+ if (w.config.series[i].data[j].x) {
+ var _positions = this.detectOverlappingBars({
+ i: i,
+ j: j,
+ barXPosition: barXPosition,
+ srtx: srtx,
+ barWidth: barWidth,
+ xDivision: xDivision,
+ initPositions: initPositions
+ });
+
+ barWidth = _positions.barWidth;
+ barXPosition = _positions.barXPosition;
+ }
+
+ paths = this.drawRangeColumnPaths(_objectSpread2({
+ indexes: {
+ i: i,
+ j: j,
+ realIndex: realIndex,
+ translationsIndex: translationsIndex
+ },
+ barWidth: barWidth,
+ barXPosition: barXPosition,
+ zeroH: zeroH,
+ xDivision: xDivision
+ }, params));
+ barHeight = paths.barHeight;
+ }
+
+ var barGoalLine = this.barHelpers.drawGoalLine({
+ barXPosition: paths.barXPosition,
+ barYPosition: barYPosition,
+ goalX: paths.goalX,
+ goalY: paths.goalY,
+ barHeight: barHeight,
+ barWidth: barWidth
+ });
+
+ if (barGoalLine) {
+ elGoalsMarkers.add(barGoalLine);
+ }
+
+ y = paths.y;
+ x = paths.x;
+ var pathFill = this.barHelpers.getPathFillColor(series, i, j, realIndex);
+ var lineFill = w.globals.stroke.colors[realIndex];
+ this.renderSeries((_this$renderSeries = {
+ realIndex: realIndex,
+ pathFill: pathFill,
+ lineFill: lineFill,
+ j: j,
+ i: i,
+ x: x,
+ y: y,
+ y1: y1,
+ y2: y2,
+ pathFrom: paths.pathFrom,
+ pathTo: paths.pathTo,
+ strokeWidth: strokeWidth,
+ elSeries: elSeries,
+ series: series,
+ barHeight: barHeight,
+ barWidth: barWidth,
+ barXPosition: barXPosition,
+ barYPosition: barYPosition
+ }, _defineProperty(_this$renderSeries, "barWidth", barWidth), _defineProperty(_this$renderSeries, "elDataLabelsWrap", elDataLabelsWrap), _defineProperty(_this$renderSeries, "elGoalsMarkers", elGoalsMarkers), _defineProperty(_this$renderSeries, "visibleSeries", this.visibleI), _defineProperty(_this$renderSeries, "type", 'rangebar'), _this$renderSeries));
+ }
+
+ ret.add(elSeries);
+ }
+
+ return ret;
+ }
+ }, {
+ key: "detectOverlappingBars",
+ value: function detectOverlappingBars(_ref) {
+ var i = _ref.i,
+ j = _ref.j,
+ barYPosition = _ref.barYPosition,
+ barXPosition = _ref.barXPosition,
+ srty = _ref.srty,
+ srtx = _ref.srtx,
+ barHeight = _ref.barHeight,
+ barWidth = _ref.barWidth,
+ yDivision = _ref.yDivision,
+ xDivision = _ref.xDivision,
+ initPositions = _ref.initPositions;
+ var w = this.w;
+ var overlaps = [];
+ var rangeName = w.config.series[i].data[j].rangeName;
+ var x = w.config.series[i].data[j].x;
+ var labelX = Array.isArray(x) ? x.join(' ') : x;
+ var rowIndex = w.globals.labels.map(function (_) {
+ return Array.isArray(_) ? _.join(' ') : _;
+ }).indexOf(labelX);
+ var overlappedIndex = w.globals.seriesRange[i].findIndex(function (tx) {
+ return tx.x === labelX && tx.overlaps.length > 0;
+ });
+
+ if (this.isHorizontal) {
+ if (w.config.plotOptions.bar.rangeBarGroupRows) {
+ barYPosition = srty + yDivision * rowIndex;
+ } else {
+ barYPosition = srty + barHeight * this.visibleI + yDivision * rowIndex;
+ }
+
+ if (overlappedIndex > -1 && !w.config.plotOptions.bar.rangeBarOverlap) {
+ overlaps = w.globals.seriesRange[i][overlappedIndex].overlaps;
+
+ if (overlaps.indexOf(rangeName) > -1) {
+ barHeight = initPositions.barHeight / overlaps.length;
+ barYPosition = barHeight * this.visibleI + yDivision * (100 - parseInt(this.barOptions.barHeight, 10)) / 100 / 2 + barHeight * (this.visibleI + overlaps.indexOf(rangeName)) + yDivision * rowIndex;
+ }
+ }
+ } else {
+ if (rowIndex > -1) {
+ if (w.config.plotOptions.bar.rangeBarGroupRows) {
+ barXPosition = srtx + xDivision * rowIndex;
+ } else {
+ barXPosition = srtx + barWidth * this.visibleI + xDivision * rowIndex;
+ }
+ }
+
+ if (overlappedIndex > -1 && !w.config.plotOptions.bar.rangeBarOverlap) {
+ overlaps = w.globals.seriesRange[i][overlappedIndex].overlaps;
+
+ if (overlaps.indexOf(rangeName) > -1) {
+ barWidth = initPositions.barWidth / overlaps.length;
+ barXPosition = barWidth * this.visibleI + xDivision * (100 - parseInt(this.barOptions.barWidth, 10)) / 100 / 2 + barWidth * (this.visibleI + overlaps.indexOf(rangeName)) + xDivision * rowIndex;
+ }
+ }
+ }
+
+ return {
+ barYPosition: barYPosition,
+ barXPosition: barXPosition,
+ barHeight: barHeight,
+ barWidth: barWidth
+ };
+ }
+ }, {
+ key: "drawRangeColumnPaths",
+ value: function drawRangeColumnPaths(_ref2) {
+ var indexes = _ref2.indexes,
+ x = _ref2.x,
+ xDivision = _ref2.xDivision,
+ barWidth = _ref2.barWidth,
+ barXPosition = _ref2.barXPosition,
+ zeroH = _ref2.zeroH;
+ var w = this.w;
+ var i = indexes.i;
+ var j = indexes.j;
+ var yRatio = this.yRatio[indexes.translationsIndex];
+ var realIndex = indexes.realIndex;
+ var range = this.getRangeValue(realIndex, j);
+ var y1 = Math.min(range.start, range.end);
+ var y2 = Math.max(range.start, range.end);
+
+ if (typeof this.series[i][j] === 'undefined' || this.series[i][j] === null) {
+ y1 = zeroH;
+ } else {
+ y1 = zeroH - y1 / yRatio;
+ y2 = zeroH - y2 / yRatio;
+ }
+
+ var barHeight = Math.abs(y2 - y1);
+ var paths = this.barHelpers.getColumnPaths({
+ barXPosition: barXPosition,
+ barWidth: barWidth,
+ y1: y1,
+ y2: y2,
+ strokeWidth: this.strokeWidth,
+ series: this.seriesRangeEnd,
+ realIndex: indexes.realIndex,
+ i: realIndex,
+ j: j,
+ w: w
+ });
+
+ if (!w.globals.isXNumeric) {
+ x = x + xDivision;
+ } else {
+ var xForNumericXAxis = this.getBarXForNumericXAxis({
+ x: x,
+ j: j,
+ realIndex: realIndex,
+ barWidth: barWidth
+ });
+ x = xForNumericXAxis.x;
+ barXPosition = xForNumericXAxis.barXPosition;
+ }
+
+ return {
+ pathTo: paths.pathTo,
+ pathFrom: paths.pathFrom,
+ barHeight: barHeight,
+ x: x,
+ y: y2,
+ goalY: this.barHelpers.getGoalValues('y', null, zeroH, i, j, indexes.translationsIndex),
+ barXPosition: barXPosition
+ };
+ }
+ }, {
+ key: "drawRangeBarPaths",
+ value: function drawRangeBarPaths(_ref3) {
+ var indexes = _ref3.indexes,
+ y = _ref3.y,
+ y1 = _ref3.y1,
+ y2 = _ref3.y2,
+ yDivision = _ref3.yDivision,
+ barHeight = _ref3.barHeight,
+ barYPosition = _ref3.barYPosition,
+ zeroW = _ref3.zeroW;
+ var w = this.w;
+ var x1 = zeroW + y1 / this.invertedYRatio;
+ var x2 = zeroW + y2 / this.invertedYRatio;
+ var barWidth = Math.abs(x2 - x1);
+ var paths = this.barHelpers.getBarpaths({
+ barYPosition: barYPosition,
+ barHeight: barHeight,
+ x1: x1,
+ x2: x2,
+ strokeWidth: this.strokeWidth,
+ series: this.seriesRangeEnd,
+ i: indexes.realIndex,
+ realIndex: indexes.realIndex,
+ j: indexes.j,
+ w: w
+ });
+
+ if (!w.globals.isXNumeric) {
+ y = y + yDivision;
+ }
+
+ return {
+ pathTo: paths.pathTo,
+ pathFrom: paths.pathFrom,
+ barWidth: barWidth,
+ x: x2,
+ goalX: this.barHelpers.getGoalValues('x', zeroW, null, indexes.realIndex, indexes.j),
+ y: y
+ };
+ }
+ }, {
+ key: "getRangeValue",
+ value: function getRangeValue(i, j) {
+ var w = this.w;
+ return {
+ start: w.globals.seriesRangeStart[i][j],
+ end: w.globals.seriesRangeEnd[i][j]
+ };
+ }
+ }]);
+
+ return RangeBar;
+ }(Bar);
+
+ var Helpers = /*#__PURE__*/function () {
+ function Helpers(lineCtx) {
+ _classCallCheck(this, Helpers);
+
+ this.w = lineCtx.w;
+ this.lineCtx = lineCtx;
+ }
+
+ _createClass(Helpers, [{
+ key: "sameValueSeriesFix",
+ value: function sameValueSeriesFix(i, series) {
+ var w = this.w;
+
+ if (w.config.fill.type === 'gradient' || w.config.fill.type[i] === 'gradient') {
+ var coreUtils = new CoreUtils(this.lineCtx.ctx, w); // applied only to LINE chart
+ // a small adjustment to allow gradient line to draw correctly for all same values
+
+ /* #fix https://github.com/apexcharts/apexcharts.js/issues/358 */
+
+ if (coreUtils.seriesHaveSameValues(i)) {
+ var gSeries = series[i].slice();
+ gSeries[gSeries.length - 1] = gSeries[gSeries.length - 1] + 0.000001;
+ series[i] = gSeries;
+ }
+ }
+
+ return series;
+ }
+ }, {
+ key: "calculatePoints",
+ value: function calculatePoints(_ref) {
+ var series = _ref.series,
+ realIndex = _ref.realIndex,
+ x = _ref.x,
+ y = _ref.y,
+ i = _ref.i,
+ j = _ref.j,
+ prevY = _ref.prevY;
+ var w = this.w;
+ var ptX = [];
+ var ptY = [];
+
+ if (j === 0) {
+ var xPT1st = this.lineCtx.categoryAxisCorrection + w.config.markers.offsetX; // the first point for line series
+ // we need to check whether it's not a time series, because a time series may
+ // start from the middle of the x axis
+
+ if (w.globals.isXNumeric) {
+ xPT1st = (w.globals.seriesX[realIndex][0] - w.globals.minX) / this.lineCtx.xRatio + w.config.markers.offsetX;
+ } // push 2 points for the first data values
+
+
+ ptX.push(xPT1st);
+ ptY.push(Utils$1.isNumber(series[i][0]) ? prevY + w.config.markers.offsetY : null);
+ ptX.push(x + w.config.markers.offsetX);
+ ptY.push(Utils$1.isNumber(series[i][j + 1]) ? y + w.config.markers.offsetY : null);
+ } else {
+ ptX.push(x + w.config.markers.offsetX);
+ ptY.push(Utils$1.isNumber(series[i][j + 1]) ? y + w.config.markers.offsetY : null);
+ }
+
+ var pointsPos = {
+ x: ptX,
+ y: ptY
+ };
+ return pointsPos;
+ }
+ }, {
+ key: "checkPreviousPaths",
+ value: function checkPreviousPaths(_ref2) {
+ var pathFromLine = _ref2.pathFromLine,
+ pathFromArea = _ref2.pathFromArea,
+ realIndex = _ref2.realIndex;
+ var w = this.w;
+
+ for (var pp = 0; pp < w.globals.previousPaths.length; pp++) {
+ var gpp = w.globals.previousPaths[pp];
+
+ if ((gpp.type === 'line' || gpp.type === 'area') && gpp.paths.length > 0 && parseInt(gpp.realIndex, 10) === parseInt(realIndex, 10)) {
+ if (gpp.type === 'line') {
+ this.lineCtx.appendPathFrom = false;
+ pathFromLine = w.globals.previousPaths[pp].paths[0].d;
+ } else if (gpp.type === 'area') {
+ this.lineCtx.appendPathFrom = false;
+ pathFromArea = w.globals.previousPaths[pp].paths[0].d;
+
+ if (w.config.stroke.show && w.globals.previousPaths[pp].paths[1]) {
+ pathFromLine = w.globals.previousPaths[pp].paths[1].d;
+ }
+ }
+ }
+ }
+
+ return {
+ pathFromLine: pathFromLine,
+ pathFromArea: pathFromArea
+ };
+ }
+ }, {
+ key: "determineFirstPrevY",
+ value: function determineFirstPrevY(_ref3) {
+ var _this$w$config$series, _series$i;
+
+ var i = _ref3.i,
+ series = _ref3.series,
+ prevY = _ref3.prevY,
+ lineYPosition = _ref3.lineYPosition,
+ translationsIndex = _ref3.translationsIndex;
+ var w = this.w;
+ var stackSeries = w.config.chart.stacked && !w.globals.comboCharts || w.config.chart.stacked && w.globals.comboCharts && (!this.w.config.chart.stackOnlyBar || ((_this$w$config$series = this.w.config.series[i]) === null || _this$w$config$series === void 0 ? void 0 : _this$w$config$series.type) === 'bar');
+
+ if (typeof ((_series$i = series[i]) === null || _series$i === void 0 ? void 0 : _series$i[0]) !== 'undefined') {
+ if (stackSeries) {
+ if (i > 0) {
+ // 1st y value of previous series
+ lineYPosition = this.lineCtx.prevSeriesY[i - 1][0];
+ } else {
+ // the first series will not have prevY values
+ lineYPosition = this.lineCtx.zeroY;
+ }
+ } else {
+ lineYPosition = this.lineCtx.zeroY;
+ }
+
+ prevY = lineYPosition - series[i][0] / this.lineCtx.yRatio[translationsIndex] + (this.lineCtx.isReversed ? series[i][0] / this.lineCtx.yRatio[translationsIndex] : 0) * 2;
+ } else {
+ // the first value in the current series is null
+ if (stackSeries && i > 0 && typeof series[i][0] === 'undefined') {
+ // check for undefined value (undefined value will occur when we clear the series while user clicks on legend to hide serieses)
+ for (var s = i - 1; s >= 0; s--) {
+ // for loop to get to 1st previous value until we get it
+ if (series[s][0] !== null && typeof series[s][0] !== 'undefined') {
+ lineYPosition = this.lineCtx.prevSeriesY[s][0];
+ prevY = lineYPosition;
+ break;
+ }
+ }
+ }
+ }
+
+ return {
+ prevY: prevY,
+ lineYPosition: lineYPosition
+ };
+ }
+ }]);
+
+ return Helpers;
+ }();
+
+ /**
+ *
+ * @yr/monotone-cubic-spline (https://github.com/YR/monotone-cubic-spline)
+ *
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2015 yr.no
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
+ * this software and associated documentation files (the "Software"), to deal in
+ * the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ * the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+ /**
+ * Generate tangents for 'points'
+ * @param {Array} points
+ * @returns {Array}
+ */
+ var tangents = function tangents(points) {
+ var m = finiteDifferences(points);
+ var n = points.length - 1;
+ var ε = 1e-6;
+ var tgts = [];
+ var a, b, d, s;
+
+ for (var i = 0; i < n; i++) {
+ d = slope(points[i], points[i + 1]);
+
+ if (Math.abs(d) < ε) {
+ m[i] = m[i + 1] = 0;
+ } else {
+ a = m[i] / d;
+ b = m[i + 1] / d;
+ s = a * a + b * b;
+
+ if (s > 9) {
+ s = d * 3 / Math.sqrt(s);
+ m[i] = s * a;
+ m[i + 1] = s * b;
+ }
+ }
+ }
+
+ for (var _i = 0; _i <= n; _i++) {
+ s = (points[Math.min(n, _i + 1)][0] - points[Math.max(0, _i - 1)][0]) / (6 * (1 + m[_i] * m[_i]));
+ tgts.push([s || 0, m[_i] * s || 0]);
+ }
+
+ return tgts;
+ };
+ /**
+ * Convert 'points' to svg path
+ * @param {Array} points
+ * @returns {String}
+ */
+
+ var svgPath = function svgPath(points) {
+ var p = '';
+
+ for (var i = 0; i < points.length; i++) {
+ var point = points[i];
+ var n = point.length;
+
+ if (n > 4) {
+ p += "C".concat(point[0], ", ").concat(point[1]);
+ p += ", ".concat(point[2], ", ").concat(point[3]);
+ p += ", ".concat(point[4], ", ").concat(point[5]);
+ } else if (n > 2) {
+ p += "S".concat(point[0], ", ").concat(point[1]);
+ p += ", ".concat(point[2], ", ").concat(point[3]);
+ }
+ }
+
+ return p;
+ };
+ var spline = {
+ /**
+ * Convert 'points' to bezier
+ * @param {Array} points
+ * @returns {Array}
+ */
+ points: function points(_points) {
+ var tgts = tangents(_points);
+ var p = _points[1];
+ var p0 = _points[0];
+ var pts = [];
+ var t = tgts[1];
+ var t0 = tgts[0]; // Add starting 'M' and 'C' points
+
+ pts.push(p0, [p0[0] + t0[0], p0[1] + t0[1], p[0] - t[0], p[1] - t[1], p[0], p[1]]); // Add 'S' points
+
+ for (var i = 2, n = tgts.length; i < n; i++) {
+ var _p = _points[i];
+ var _t = tgts[i];
+ pts.push([_p[0] - _t[0], _p[1] - _t[1], _p[0], _p[1]]);
+ }
+
+ return pts;
+ },
+
+ /**
+ * Slice out a segment of 'points'
+ * @param {Array} points
+ * @param {Number} start
+ * @param {Number} end
+ * @returns {Array}
+ */
+ slice: function slice(points, start, end) {
+ var pts = points.slice(start, end);
+
+ if (start) {
+ // Add additional 'C' points
+ if (pts[1].length < 6) {
+ var n = pts[0].length;
+ pts[1] = [pts[0][n - 2] * 2 - pts[0][n - 4], pts[0][n - 1] * 2 - pts[0][n - 3]].concat(pts[1]);
+ } // Remove control points for 'M'
+
+
+ pts[0] = pts[0].slice(-2);
+ }
+
+ return pts;
+ }
+ };
+ /**
+ * Compute slope from point 'p0' to 'p1'
+ * @param {Array} p0
+ * @param {Array} p1
+ * @returns {Number}
+ */
+
+ function slope(p0, p1) {
+ return (p1[1] - p0[1]) / (p1[0] - p0[0]);
+ }
+ /**
+ * Compute three-point differences for 'points'
+ * @param {Array} points
+ * @returns {Array}
+ */
+
+
+ function finiteDifferences(points) {
+ var m = [];
+ var p0 = points[0];
+ var p1 = points[1];
+ var d = m[0] = slope(p0, p1);
+ var i = 1;
+
+ for (var n = points.length - 1; i < n; i++) {
+ p0 = p1;
+ p1 = points[i + 1];
+ m[i] = (d + (d = slope(p0, p1))) * 0.5;
+ }
+
+ m[i] = d;
+ return m;
+ }
+
+ /**
+ * ApexCharts Line Class responsible for drawing Line / Area / RangeArea Charts.
+ * This class is also responsible for generating values for Bubble/Scatter charts, so need to rename it to Axis Charts to avoid confusions
+ * @module Line
+ **/
+
+ var Line = /*#__PURE__*/function () {
+ function Line(ctx, xyRatios, isPointsChart) {
+ _classCallCheck(this, Line);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.xyRatios = xyRatios;
+ this.pointsChart = !(this.w.config.chart.type !== 'bubble' && this.w.config.chart.type !== 'scatter') || isPointsChart;
+ this.scatter = new Scatter(this.ctx);
+ this.noNegatives = this.w.globals.minX === Number.MAX_VALUE;
+ this.lineHelpers = new Helpers(this);
+ this.markers = new Markers(this.ctx);
+ this.prevSeriesY = [];
+ this.categoryAxisCorrection = 0;
+ this.yaxisIndex = 0;
+ }
+
+ _createClass(Line, [{
+ key: "draw",
+ value: function draw(series, ctype, seriesIndex, seriesRangeEnd) {
+ var _w$config$series$;
+
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var type = w.globals.comboCharts ? ctype : w.config.chart.type;
+ var ret = graphics.group({
+ class: "apexcharts-".concat(type, "-series apexcharts-plot-series")
+ });
+ var coreUtils = new CoreUtils(this.ctx, w);
+ this.yRatio = this.xyRatios.yRatio;
+ this.zRatio = this.xyRatios.zRatio;
+ this.xRatio = this.xyRatios.xRatio;
+ this.baseLineY = this.xyRatios.baseLineY;
+ series = coreUtils.getLogSeries(series);
+ this.yRatio = coreUtils.getLogYRatios(this.yRatio); // push all series in an array, so we can draw in reverse order (for stacked charts)
+
+ var allSeries = [];
+
+ for (var i = 0; i < series.length; i++) {
+ series = this.lineHelpers.sameValueSeriesFix(i, series);
+ var realIndex = w.globals.comboCharts ? seriesIndex[i] : i;
+ var translationsIndex = this.yRatio.length > 1 ? realIndex : 0;
+
+ this._initSerieVariables(series, i, realIndex);
+
+ var yArrj = []; // hold y values of current iterating series
+
+ var y2Arrj = []; // holds y2 values in range-area charts
+
+ var xArrj = []; // hold x values of current iterating series
+
+ var x = w.globals.padHorizontal + this.categoryAxisCorrection;
+ var y = 1;
+ var linePaths = [];
+ var areaPaths = [];
+ this.ctx.series.addCollapsedClassToSeries(this.elSeries, realIndex);
+
+ if (w.globals.isXNumeric && w.globals.seriesX.length > 0) {
+ x = (w.globals.seriesX[realIndex][0] - w.globals.minX) / this.xRatio;
+ }
+
+ xArrj.push(x);
+ var pX = x;
+ var pY = void 0;
+ var pY2 = void 0;
+ var prevX = pX;
+ var prevY = this.zeroY;
+ var prevY2 = this.zeroY;
+ var lineYPosition = 0; // the first value in the current series is not null or undefined
+
+ var firstPrevY = this.lineHelpers.determineFirstPrevY({
+ i: i,
+ series: series,
+ prevY: prevY,
+ lineYPosition: lineYPosition,
+ translationsIndex: translationsIndex
+ });
+ prevY = firstPrevY.prevY;
+
+ if (w.config.stroke.curve === 'monotonCubic' && series[i][0] === null) {
+ // we have to discard the y position if 1st dataPoint is null as it causes issues with monotoneCubic path creation
+ yArrj.push(null);
+ } else {
+ yArrj.push(prevY);
+ }
+
+ pY = prevY; // y2 are needed for range-area charts
+
+ var firstPrevY2 = void 0;
+
+ if (type === 'rangeArea') {
+ firstPrevY2 = this.lineHelpers.determineFirstPrevY({
+ i: i,
+ series: seriesRangeEnd,
+ prevY: prevY2,
+ lineYPosition: lineYPosition,
+ translationsIndex: translationsIndex
+ });
+ prevY2 = firstPrevY2.prevY;
+ pY2 = prevY2;
+ y2Arrj.push(prevY2);
+ }
+
+ var pathsFrom = this._calculatePathsFrom({
+ type: type,
+ series: series,
+ i: i,
+ realIndex: realIndex,
+ prevX: prevX,
+ prevY: prevY,
+ prevY2: prevY2
+ });
+
+ var iteratingOpts = {
+ type: type,
+ series: series,
+ realIndex: realIndex,
+ translationsIndex: translationsIndex,
+ i: i,
+ x: x,
+ y: y,
+ pX: pX,
+ pY: pY,
+ pathsFrom: pathsFrom,
+ linePaths: linePaths,
+ areaPaths: areaPaths,
+ seriesIndex: seriesIndex,
+ lineYPosition: lineYPosition,
+ xArrj: xArrj,
+ yArrj: yArrj,
+ y2Arrj: y2Arrj,
+ seriesRangeEnd: seriesRangeEnd
+ };
+
+ var paths = this._iterateOverDataPoints(_objectSpread2(_objectSpread2({}, iteratingOpts), {}, {
+ iterations: type === 'rangeArea' ? series[i].length - 1 : undefined,
+ isRangeStart: true
+ }));
+
+ if (type === 'rangeArea') {
+ var pathsFrom2 = this._calculatePathsFrom({
+ series: seriesRangeEnd,
+ i: i,
+ realIndex: realIndex,
+ prevX: prevX,
+ prevY: prevY2
+ });
+
+ var rangePaths = this._iterateOverDataPoints(_objectSpread2(_objectSpread2({}, iteratingOpts), {}, {
+ series: seriesRangeEnd,
+ pY: pY2,
+ pathsFrom: pathsFrom2,
+ iterations: seriesRangeEnd[i].length - 1,
+ isRangeStart: false
+ }));
+
+ paths.linePaths[0] = rangePaths.linePath + paths.linePath;
+ paths.pathFromLine = rangePaths.pathFromLine + paths.pathFromLine;
+ }
+
+ this._handlePaths({
+ type: type,
+ realIndex: realIndex,
+ i: i,
+ paths: paths
+ });
+
+ this.elSeries.add(this.elPointsMain);
+ this.elSeries.add(this.elDataLabelsWrap);
+ allSeries.push(this.elSeries);
+ }
+
+ if (typeof ((_w$config$series$ = w.config.series[0]) === null || _w$config$series$ === void 0 ? void 0 : _w$config$series$.zIndex) !== 'undefined') {
+ allSeries.sort(function (a, b) {
+ return Number(a.node.getAttribute('zIndex')) - Number(b.node.getAttribute('zIndex'));
+ });
+ }
+
+ if (w.config.chart.stacked) {
+ for (var s = allSeries.length; s > 0; s--) {
+ ret.add(allSeries[s - 1]);
+ }
+ } else {
+ for (var _s = 0; _s < allSeries.length; _s++) {
+ ret.add(allSeries[_s]);
+ }
+ }
+
+ return ret;
+ }
+ }, {
+ key: "_initSerieVariables",
+ value: function _initSerieVariables(series, i, realIndex) {
+ var w = this.w;
+ var graphics = new Graphics(this.ctx); // width divided into equal parts
+
+ this.xDivision = w.globals.gridWidth / (w.globals.dataPoints - (w.config.xaxis.tickPlacement === 'on' ? 1 : 0));
+ this.strokeWidth = Array.isArray(w.config.stroke.width) ? w.config.stroke.width[realIndex] : w.config.stroke.width;
+ var translationsIndex = 0;
+
+ if (this.yRatio.length > 1) {
+ this.yaxisIndex = w.globals.seriesYAxisReverseMap[realIndex];
+ translationsIndex = realIndex;
+ }
+
+ this.isReversed = w.config.yaxis[this.yaxisIndex] && w.config.yaxis[this.yaxisIndex].reversed; // zeroY is the 0 value in y series which can be used in negative charts
+
+ this.zeroY = w.globals.gridHeight - this.baseLineY[translationsIndex] - (this.isReversed ? w.globals.gridHeight : 0) + (this.isReversed ? this.baseLineY[translationsIndex] * 2 : 0);
+ this.areaBottomY = this.zeroY;
+
+ if (this.zeroY > w.globals.gridHeight || w.config.plotOptions.area.fillTo === 'end') {
+ this.areaBottomY = w.globals.gridHeight;
+ }
+
+ this.categoryAxisCorrection = this.xDivision / 2; // el to which series will be drawn
+
+ this.elSeries = graphics.group({
+ class: "apexcharts-series",
+ zIndex: typeof w.config.series[realIndex].zIndex !== 'undefined' ? w.config.series[realIndex].zIndex : realIndex,
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[realIndex])
+ }); // points
+
+ this.elPointsMain = graphics.group({
+ class: 'apexcharts-series-markers-wrap',
+ 'data:realIndex': realIndex
+ }); // eldatalabels
+
+ this.elDataLabelsWrap = graphics.group({
+ class: 'apexcharts-datalabels',
+ 'data:realIndex': realIndex
+ });
+ var longestSeries = series[i].length === w.globals.dataPoints;
+ this.elSeries.attr({
+ 'data:longestSeries': longestSeries,
+ rel: i + 1,
+ 'data:realIndex': realIndex
+ });
+ this.appendPathFrom = true;
+ }
+ }, {
+ key: "_calculatePathsFrom",
+ value: function _calculatePathsFrom(_ref) {
+ var type = _ref.type,
+ series = _ref.series,
+ i = _ref.i,
+ realIndex = _ref.realIndex,
+ prevX = _ref.prevX,
+ prevY = _ref.prevY,
+ prevY2 = _ref.prevY2;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var linePath, areaPath, pathFromLine, pathFromArea;
+
+ if (series[i][0] === null) {
+ // when the first value itself is null, we need to move the pointer to a location where a null value is not found
+ for (var s = 0; s < series[i].length; s++) {
+ if (series[i][s] !== null) {
+ prevX = this.xDivision * s;
+ prevY = this.zeroY - series[i][s] / this.yRatio[realIndex];
+ linePath = graphics.move(prevX, prevY);
+ areaPath = graphics.move(prevX, this.areaBottomY);
+ break;
+ }
+ }
+ } else {
+ linePath = graphics.move(prevX, prevY);
+
+ if (type === 'rangeArea') {
+ linePath = graphics.move(prevX, prevY2) + graphics.line(prevX, prevY);
+ }
+
+ areaPath = graphics.move(prevX, this.areaBottomY) + graphics.line(prevX, prevY);
+ }
+
+ pathFromLine = graphics.move(-1, this.zeroY) + graphics.line(-1, this.zeroY);
+ pathFromArea = graphics.move(-1, this.zeroY) + graphics.line(-1, this.zeroY);
+
+ if (w.globals.previousPaths.length > 0) {
+ var pathFrom = this.lineHelpers.checkPreviousPaths({
+ pathFromLine: pathFromLine,
+ pathFromArea: pathFromArea,
+ realIndex: realIndex
+ });
+ pathFromLine = pathFrom.pathFromLine;
+ pathFromArea = pathFrom.pathFromArea;
+ }
+
+ return {
+ prevX: prevX,
+ prevY: prevY,
+ linePath: linePath,
+ areaPath: areaPath,
+ pathFromLine: pathFromLine,
+ pathFromArea: pathFromArea
+ };
+ }
+ }, {
+ key: "_handlePaths",
+ value: function _handlePaths(_ref2) {
+ var type = _ref2.type,
+ realIndex = _ref2.realIndex,
+ i = _ref2.i,
+ paths = _ref2.paths;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var fill = new Fill(this.ctx); // push all current y values array to main PrevY Array
+
+ this.prevSeriesY.push(paths.yArrj); // push all x val arrays into main xArr
+
+ w.globals.seriesXvalues[realIndex] = paths.xArrj;
+ w.globals.seriesYvalues[realIndex] = paths.yArrj;
+ var forecast = w.config.forecastDataPoints;
+
+ if (forecast.count > 0 && type !== 'rangeArea') {
+ var forecastCutoff = w.globals.seriesXvalues[realIndex][w.globals.seriesXvalues[realIndex].length - forecast.count - 1];
+ var elForecastMask = graphics.drawRect(forecastCutoff, 0, w.globals.gridWidth, w.globals.gridHeight, 0);
+ w.globals.dom.elForecastMask.appendChild(elForecastMask.node);
+ var elNonForecastMask = graphics.drawRect(0, 0, forecastCutoff, w.globals.gridHeight, 0);
+ w.globals.dom.elNonForecastMask.appendChild(elNonForecastMask.node);
+ } // these elements will be shown after area path animation completes
+
+
+ if (!this.pointsChart) {
+ w.globals.delayedElements.push({
+ el: this.elPointsMain.node,
+ index: realIndex
+ });
+ }
+
+ var defaultRenderedPathOptions = {
+ i: i,
+ realIndex: realIndex,
+ animationDelay: i,
+ initialSpeed: w.config.chart.animations.speed,
+ dataChangeSpeed: w.config.chart.animations.dynamicAnimation.speed,
+ className: "apexcharts-".concat(type)
+ };
+
+ if (type === 'area') {
+ var pathFill = fill.fillPath({
+ seriesNumber: realIndex
+ });
+
+ for (var p = 0; p < paths.areaPaths.length; p++) {
+ var renderedPath = graphics.renderPaths(_objectSpread2(_objectSpread2({}, defaultRenderedPathOptions), {}, {
+ pathFrom: paths.pathFromArea,
+ pathTo: paths.areaPaths[p],
+ stroke: 'none',
+ strokeWidth: 0,
+ strokeLineCap: null,
+ fill: pathFill
+ }));
+ this.elSeries.add(renderedPath);
+ }
+ }
+
+ if (w.config.stroke.show && !this.pointsChart) {
+ var lineFill = null;
+
+ if (type === 'line') {
+ lineFill = fill.fillPath({
+ seriesNumber: realIndex,
+ i: i
+ });
+ } else {
+ if (w.config.stroke.fill.type === 'solid') {
+ lineFill = w.globals.stroke.colors[realIndex];
+ } else {
+ var prevFill = w.config.fill;
+ w.config.fill = w.config.stroke.fill;
+ lineFill = fill.fillPath({
+ seriesNumber: realIndex,
+ i: i
+ });
+ w.config.fill = prevFill;
+ }
+ } // range-area paths are drawn using linePaths
+
+
+ for (var _p = 0; _p < paths.linePaths.length; _p++) {
+ var _pathFill = lineFill;
+
+ if (type === 'rangeArea') {
+ _pathFill = fill.fillPath({
+ seriesNumber: realIndex
+ });
+ }
+
+ var linePathCommonOpts = _objectSpread2(_objectSpread2({}, defaultRenderedPathOptions), {}, {
+ pathFrom: paths.pathFromLine,
+ pathTo: paths.linePaths[_p],
+ stroke: lineFill,
+ strokeWidth: this.strokeWidth,
+ strokeLineCap: w.config.stroke.lineCap,
+ fill: type === 'rangeArea' ? _pathFill : 'none'
+ });
+
+ var _renderedPath = graphics.renderPaths(linePathCommonOpts);
+
+ this.elSeries.add(_renderedPath);
+
+ _renderedPath.attr('fill-rule', "evenodd");
+
+ if (forecast.count > 0 && type !== 'rangeArea') {
+ var renderedForecastPath = graphics.renderPaths(linePathCommonOpts);
+ renderedForecastPath.node.setAttribute('stroke-dasharray', forecast.dashArray);
+
+ if (forecast.strokeWidth) {
+ renderedForecastPath.node.setAttribute('stroke-width', forecast.strokeWidth);
+ }
+
+ this.elSeries.add(renderedForecastPath);
+ renderedForecastPath.attr('clip-path', "url(#forecastMask".concat(w.globals.cuid, ")"));
+
+ _renderedPath.attr('clip-path', "url(#nonForecastMask".concat(w.globals.cuid, ")"));
+ }
+ }
+ }
+ }
+ }, {
+ key: "_iterateOverDataPoints",
+ value: function _iterateOverDataPoints(_ref3) {
+ var _this = this,
+ _this$w$config$series;
+
+ var type = _ref3.type,
+ series = _ref3.series,
+ iterations = _ref3.iterations,
+ realIndex = _ref3.realIndex,
+ translationsIndex = _ref3.translationsIndex,
+ i = _ref3.i,
+ x = _ref3.x,
+ y = _ref3.y,
+ pX = _ref3.pX,
+ pY = _ref3.pY,
+ pathsFrom = _ref3.pathsFrom,
+ linePaths = _ref3.linePaths,
+ areaPaths = _ref3.areaPaths,
+ seriesIndex = _ref3.seriesIndex,
+ lineYPosition = _ref3.lineYPosition,
+ xArrj = _ref3.xArrj,
+ yArrj = _ref3.yArrj,
+ y2Arrj = _ref3.y2Arrj,
+ isRangeStart = _ref3.isRangeStart,
+ seriesRangeEnd = _ref3.seriesRangeEnd;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var yRatio = this.yRatio;
+ var prevY = pathsFrom.prevY,
+ linePath = pathsFrom.linePath,
+ areaPath = pathsFrom.areaPath,
+ pathFromLine = pathsFrom.pathFromLine,
+ pathFromArea = pathsFrom.pathFromArea;
+ var minY = Utils$1.isNumber(w.globals.minYArr[realIndex]) ? w.globals.minYArr[realIndex] : w.globals.minY;
+
+ if (!iterations) {
+ iterations = w.globals.dataPoints > 1 ? w.globals.dataPoints - 1 : w.globals.dataPoints;
+ }
+
+ var getY = function getY(_y, lineYPos) {
+ return lineYPos - _y / yRatio[translationsIndex] + (_this.isReversed ? _y / yRatio[translationsIndex] : 0) * 2;
+ };
+
+ var y2 = y;
+ var stackSeries = w.config.chart.stacked && !w.globals.comboCharts || w.config.chart.stacked && w.globals.comboCharts && (!this.w.config.chart.stackOnlyBar || ((_this$w$config$series = this.w.config.series[realIndex]) === null || _this$w$config$series === void 0 ? void 0 : _this$w$config$series.type) === 'bar');
+
+ for (var j = 0; j < iterations; j++) {
+ var isNull = typeof series[i][j + 1] === 'undefined' || series[i][j + 1] === null;
+
+ if (w.globals.isXNumeric) {
+ var sX = w.globals.seriesX[realIndex][j + 1];
+
+ if (typeof w.globals.seriesX[realIndex][j + 1] === 'undefined') {
+ /* fix #374 */
+ sX = w.globals.seriesX[realIndex][iterations - 1];
+ }
+
+ x = (sX - w.globals.minX) / this.xRatio;
+ } else {
+ x = x + this.xDivision;
+ }
+
+ if (stackSeries) {
+ if (i > 0 && w.globals.collapsedSeries.length < w.config.series.length - 1) {
+ // a collapsed series in a stacked bar chart may provide wrong result for the next series, hence find the prevIndex of prev series which is not collapsed - fixes apexcharts.js#1372
+ var prevIndex = function prevIndex(pi) {
+ var pii = pi;
+
+ for (var cpi = 0; cpi < w.globals.series.length; cpi++) {
+ if (w.globals.collapsedSeriesIndices.indexOf(pi) > -1) {
+ pii--;
+ break;
+ }
+ }
+
+ return pii >= 0 ? pii : 0;
+ };
+
+ lineYPosition = this.prevSeriesY[prevIndex(i - 1)][j + 1];
+ } else {
+ // the first series will not have prevY values
+ lineYPosition = this.zeroY;
+ }
+ } else {
+ lineYPosition = this.zeroY;
+ }
+
+ if (isNull) {
+ y = getY(minY, lineYPosition);
+ } else {
+ y = getY(series[i][j + 1], lineYPosition);
+
+ if (type === 'rangeArea') {
+ y2 = getY(seriesRangeEnd[i][j + 1], lineYPosition);
+ }
+ } // push current X
+
+
+ xArrj.push(x); // push current Y that will be used as next series's bottom position
+
+ if (isNull && w.config.stroke.curve === 'smooth') {
+ yArrj.push(null);
+ } else {
+ yArrj.push(y);
+ }
+
+ y2Arrj.push(y2);
+ var pointsPos = this.lineHelpers.calculatePoints({
+ series: series,
+ x: x,
+ y: y,
+ realIndex: realIndex,
+ i: i,
+ j: j,
+ prevY: prevY
+ });
+
+ var calculatedPaths = this._createPaths({
+ type: type,
+ series: series,
+ i: i,
+ realIndex: realIndex,
+ j: j,
+ x: x,
+ y: y,
+ y2: y2,
+ xArrj: xArrj,
+ yArrj: yArrj,
+ y2Arrj: y2Arrj,
+ pX: pX,
+ pY: pY,
+ linePath: linePath,
+ areaPath: areaPath,
+ linePaths: linePaths,
+ areaPaths: areaPaths,
+ seriesIndex: seriesIndex,
+ isRangeStart: isRangeStart
+ });
+
+ areaPaths = calculatedPaths.areaPaths;
+ linePaths = calculatedPaths.linePaths;
+ pX = calculatedPaths.pX;
+ pY = calculatedPaths.pY;
+ areaPath = calculatedPaths.areaPath;
+ linePath = calculatedPaths.linePath;
+
+ if (this.appendPathFrom && !(w.config.stroke.curve === 'monotoneCubic' && type === 'rangeArea')) {
+ pathFromLine = pathFromLine + graphics.line(x, this.zeroY);
+ pathFromArea = pathFromArea + graphics.line(x, this.zeroY);
+ }
+
+ this.handleNullDataPoints(series, pointsPos, i, j, realIndex);
+
+ this._handleMarkersAndLabels({
+ type: type,
+ pointsPos: pointsPos,
+ i: i,
+ j: j,
+ realIndex: realIndex,
+ isRangeStart: isRangeStart
+ });
+ }
+
+ return {
+ yArrj: yArrj,
+ xArrj: xArrj,
+ pathFromArea: pathFromArea,
+ areaPaths: areaPaths,
+ pathFromLine: pathFromLine,
+ linePaths: linePaths,
+ linePath: linePath,
+ areaPath: areaPath
+ };
+ }
+ }, {
+ key: "_handleMarkersAndLabels",
+ value: function _handleMarkersAndLabels(_ref4) {
+ var type = _ref4.type,
+ pointsPos = _ref4.pointsPos,
+ isRangeStart = _ref4.isRangeStart,
+ i = _ref4.i,
+ j = _ref4.j,
+ realIndex = _ref4.realIndex;
+ var w = this.w;
+ var dataLabels = new DataLabels(this.ctx);
+
+ if (!this.pointsChart) {
+ if (w.globals.series[i].length > 1) {
+ this.elPointsMain.node.classList.add('apexcharts-element-hidden');
+ }
+
+ var elPointsWrap = this.markers.plotChartMarkers(pointsPos, realIndex, j + 1);
+
+ if (elPointsWrap !== null) {
+ this.elPointsMain.add(elPointsWrap);
+ }
+ } else {
+ // scatter / bubble chart points creation
+ this.scatter.draw(this.elSeries, j, {
+ realIndex: realIndex,
+ pointsPos: pointsPos,
+ zRatio: this.zRatio,
+ elParent: this.elPointsMain
+ });
+ }
+
+ var drawnLabels = dataLabels.drawDataLabel({
+ type: type,
+ isRangeStart: isRangeStart,
+ pos: pointsPos,
+ i: realIndex,
+ j: j + 1
+ });
+
+ if (drawnLabels !== null) {
+ this.elDataLabelsWrap.add(drawnLabels);
+ }
+ }
+ }, {
+ key: "_createPaths",
+ value: function _createPaths(_ref5) {
+ var type = _ref5.type,
+ series = _ref5.series,
+ i = _ref5.i,
+ realIndex = _ref5.realIndex,
+ j = _ref5.j,
+ x = _ref5.x,
+ y = _ref5.y,
+ xArrj = _ref5.xArrj,
+ yArrj = _ref5.yArrj,
+ y2 = _ref5.y2,
+ y2Arrj = _ref5.y2Arrj,
+ pX = _ref5.pX,
+ pY = _ref5.pY,
+ linePath = _ref5.linePath,
+ areaPath = _ref5.areaPath,
+ linePaths = _ref5.linePaths,
+ areaPaths = _ref5.areaPaths,
+ seriesIndex = _ref5.seriesIndex,
+ isRangeStart = _ref5.isRangeStart;
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var curve = w.config.stroke.curve;
+ var areaBottomY = this.areaBottomY;
+
+ if (Array.isArray(w.config.stroke.curve)) {
+ if (Array.isArray(seriesIndex)) {
+ curve = w.config.stroke.curve[seriesIndex[i]];
+ } else {
+ curve = w.config.stroke.curve[i];
+ }
+ }
+
+ if (type === 'rangeArea' && (w.globals.hasNullValues || w.config.forecastDataPoints.count > 0) && curve === 'monotoneCubic') {
+ curve = 'straight';
+ }
+
+ if (curve === 'monotoneCubic') {
+ var shouldRenderMonotone = type === 'rangeArea' ? xArrj.length === w.globals.dataPoints : j === series[i].length - 2;
+ var smoothInputs = xArrj.map(function (_, i) {
+ return [xArrj[i], yArrj[i]];
+ }).filter(function (_) {
+ return _[1] !== null;
+ });
+
+ if (shouldRenderMonotone && smoothInputs.length > 1) {
+ var points = spline.points(smoothInputs);
+ linePath += svgPath(points);
+
+ if (series[i][0] === null) {
+ // if the first dataPoint is null, we use the linePath directly
+ areaPath = linePath;
+ } else {
+ // else, we append the areaPath
+ areaPath += svgPath(points);
+ }
+
+ if (type === 'rangeArea' && isRangeStart) {
+ // draw the line to connect y with y2; then draw the other end of range
+ linePath += graphics.line(xArrj[xArrj.length - 1], y2Arrj[y2Arrj.length - 1]);
+ var xArrjInversed = xArrj.slice().reverse();
+ var y2ArrjInversed = y2Arrj.slice().reverse();
+ var smoothInputsY2 = xArrjInversed.map(function (_, i) {
+ return [xArrjInversed[i], y2ArrjInversed[i]];
+ });
+ var pointsY2 = spline.points(smoothInputsY2);
+ linePath += svgPath(pointsY2); // in range area, we don't have separate line and area path
+
+ areaPath = linePath;
+ } else {
+ areaPath += graphics.line(smoothInputs[smoothInputs.length - 1][0], areaBottomY) + graphics.line(smoothInputs[0][0], areaBottomY) + graphics.move(smoothInputs[0][0], smoothInputs[0][1]) + 'z';
+ }
+
+ linePaths.push(linePath);
+ areaPaths.push(areaPath);
+ }
+ } else if (curve === 'smooth') {
+ var length = (x - pX) * 0.35;
+
+ if (w.globals.hasNullValues) {
+ if (series[i][j] !== null) {
+ if (series[i][j + 1] !== null) {
+ linePath = graphics.move(pX, pY) + graphics.curve(pX + length, pY, x - length, y, x + 1, y);
+ areaPath = graphics.move(pX + 1, pY) + graphics.curve(pX + length, pY, x - length, y, x + 1, y) + graphics.line(x, areaBottomY) + graphics.line(pX, areaBottomY) + 'z';
+ } else {
+ linePath = graphics.move(pX, pY);
+ areaPath = graphics.move(pX, pY) + 'z';
+ }
+ }
+
+ linePaths.push(linePath);
+ areaPaths.push(areaPath);
+ } else {
+ linePath = linePath + graphics.curve(pX + length, pY, x - length, y, x, y);
+ areaPath = areaPath + graphics.curve(pX + length, pY, x - length, y, x, y);
+ }
+
+ pX = x;
+ pY = y;
+
+ if (j === series[i].length - 2) {
+ // last loop, close path
+ areaPath = areaPath + graphics.curve(pX, pY, x, y, x, areaBottomY) + graphics.move(x, y) + 'z';
+
+ if (type === 'rangeArea' && isRangeStart) {
+ linePath = linePath + graphics.curve(pX, pY, x, y, x, y2) + graphics.move(x, y2) + 'z';
+ } else {
+ if (!w.globals.hasNullValues) {
+ linePaths.push(linePath);
+ areaPaths.push(areaPath);
+ }
+ }
+ }
+ } else {
+ if (series[i][j + 1] === null) {
+ linePath = linePath + graphics.move(x, y);
+ var numericOrCatX = w.globals.isXNumeric ? (w.globals.seriesX[realIndex][j] - w.globals.minX) / this.xRatio : x - this.xDivision;
+ areaPath = areaPath + graphics.line(numericOrCatX, areaBottomY) + graphics.move(x, y) + 'z';
+ }
+
+ if (series[i][j] === null) {
+ linePath = linePath + graphics.move(x, y);
+ areaPath = areaPath + graphics.move(x, areaBottomY);
+ }
+
+ if (curve === 'stepline') {
+ linePath = linePath + graphics.line(x, null, 'H') + graphics.line(null, y, 'V');
+ areaPath = areaPath + graphics.line(x, null, 'H') + graphics.line(null, y, 'V');
+ } else if (curve === 'linestep') {
+ linePath = linePath + graphics.line(null, y, 'V') + graphics.line(x, null, 'H');
+ areaPath = areaPath + graphics.line(null, y, 'V') + graphics.line(x, null, 'H');
+ } else if (curve === 'straight') {
+ linePath = linePath + graphics.line(x, y);
+ areaPath = areaPath + graphics.line(x, y);
+ }
+
+ if (j === series[i].length - 2) {
+ // last loop, close path
+ areaPath = areaPath + graphics.line(x, areaBottomY) + graphics.move(x, y) + 'z';
+
+ if (type === 'rangeArea' && isRangeStart) {
+ linePath = linePath + graphics.line(x, y2) + graphics.move(x, y2) + 'z';
+ } else {
+ linePaths.push(linePath);
+ areaPaths.push(areaPath);
+ }
+ }
+ }
+
+ return {
+ linePaths: linePaths,
+ areaPaths: areaPaths,
+ pX: pX,
+ pY: pY,
+ linePath: linePath,
+ areaPath: areaPath
+ };
+ }
+ }, {
+ key: "handleNullDataPoints",
+ value: function handleNullDataPoints(series, pointsPos, i, j, realIndex) {
+ var w = this.w;
+
+ if (series[i][j] === null && w.config.markers.showNullDataPoints || series[i].length === 1) {
+ // fixes apexcharts.js#1282, #1252
+ var elPointsWrap = this.markers.plotChartMarkers(pointsPos, realIndex, j + 1, this.strokeWidth - w.config.markers.strokeWidth / 2, true);
+
+ if (elPointsWrap !== null) {
+ this.elPointsMain.add(elPointsWrap);
+ }
+ }
+ }
+ }]);
+
+ return Line;
+ }();
+
+ /*
+ * treemap-squarify.js - open source implementation of squarified treemaps
+ *
+ * Treemap Squared 0.5 - Treemap Charting library
+ *
+ * https://github.com/imranghory/treemap-squared/
+ *
+ * Copyright (c) 2012 Imran Ghory (imranghory@gmail.com)
+ * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
+ *
+ *
+ * Implementation of the squarify treemap algorithm described in:
+ *
+ * Bruls, Mark; Huizing, Kees; van Wijk, Jarke J. (2000), "Squarified treemaps"
+ * in de Leeuw, W.; van Liere, R., Data Visualization 2000:
+ * Proc. Joint Eurographics and IEEE TCVG Symp. on Visualization, Springer-Verlag, pp. 33–42.
+ *
+ * Paper is available online at: http://www.win.tue.nl/~vanwijk/stm.pdf
+ *
+ * The code in this file is completeley decoupled from the drawing code so it should be trivial
+ * to port it to any other vector drawing library. Given an array of datapoints this library returns
+ * an array of cartesian coordinates that represent the rectangles that make up the treemap.
+ *
+ * The library also supports multidimensional data (nested treemaps) and performs normalization on the data.
+ *
+ * See the README file for more details.
+ */
+ window.TreemapSquared = {};
+
+ (function () {
+
+ window.TreemapSquared.generate = function () {
+ function Container(xoffset, yoffset, width, height) {
+ this.xoffset = xoffset; // offset from the the top left hand corner
+
+ this.yoffset = yoffset; // ditto
+
+ this.height = height;
+ this.width = width;
+
+ this.shortestEdge = function () {
+ return Math.min(this.height, this.width);
+ }; // getCoordinates - for a row of boxes which we've placed
+ // return an array of their cartesian coordinates
+
+
+ this.getCoordinates = function (row) {
+ var coordinates = [];
+ var subxoffset = this.xoffset,
+ subyoffset = this.yoffset; //our offset within the container
+
+ var areawidth = sumArray(row) / this.height;
+ var areaheight = sumArray(row) / this.width;
+ var i;
+
+ if (this.width >= this.height) {
+ for (i = 0; i < row.length; i++) {
+ coordinates.push([subxoffset, subyoffset, subxoffset + areawidth, subyoffset + row[i] / areawidth]);
+ subyoffset = subyoffset + row[i] / areawidth;
+ }
+ } else {
+ for (i = 0; i < row.length; i++) {
+ coordinates.push([subxoffset, subyoffset, subxoffset + row[i] / areaheight, subyoffset + areaheight]);
+ subxoffset = subxoffset + row[i] / areaheight;
+ }
+ }
+
+ return coordinates;
+ }; // cutArea - once we've placed some boxes into an row we then need to identify the remaining area,
+ // this function takes the area of the boxes we've placed and calculates the location and
+ // dimensions of the remaining space and returns a container box defined by the remaining area
+
+
+ this.cutArea = function (area) {
+ var newcontainer;
+
+ if (this.width >= this.height) {
+ var areawidth = area / this.height;
+ var newwidth = this.width - areawidth;
+ newcontainer = new Container(this.xoffset + areawidth, this.yoffset, newwidth, this.height);
+ } else {
+ var areaheight = area / this.width;
+ var newheight = this.height - areaheight;
+ newcontainer = new Container(this.xoffset, this.yoffset + areaheight, this.width, newheight);
+ }
+
+ return newcontainer;
+ };
+ } // normalize - the Bruls algorithm assumes we're passing in areas that nicely fit into our
+ // container box, this method takes our raw data and normalizes the data values into
+ // area values so that this assumption is valid.
+
+
+ function normalize(data, area) {
+ var normalizeddata = [];
+ var sum = sumArray(data);
+ var multiplier = area / sum;
+ var i;
+
+ for (i = 0; i < data.length; i++) {
+ normalizeddata[i] = data[i] * multiplier;
+ }
+
+ return normalizeddata;
+ } // treemapMultidimensional - takes multidimensional data (aka [[23,11],[11,32]] - nested array)
+ // and recursively calls itself using treemapSingledimensional
+ // to create a patchwork of treemaps and merge them
+
+
+ function treemapMultidimensional(data, width, height, xoffset, yoffset) {
+ xoffset = typeof xoffset === 'undefined' ? 0 : xoffset;
+ yoffset = typeof yoffset === 'undefined' ? 0 : yoffset;
+ var mergeddata = [];
+ var mergedtreemap;
+ var results = [];
+ var i;
+
+ if (isArray(data[0])) {
+ // if we've got more dimensions of depth
+ for (i = 0; i < data.length; i++) {
+ mergeddata[i] = sumMultidimensionalArray(data[i]);
+ }
+
+ mergedtreemap = treemapSingledimensional(mergeddata, width, height, xoffset, yoffset);
+
+ for (i = 0; i < data.length; i++) {
+ results.push(treemapMultidimensional(data[i], mergedtreemap[i][2] - mergedtreemap[i][0], mergedtreemap[i][3] - mergedtreemap[i][1], mergedtreemap[i][0], mergedtreemap[i][1]));
+ }
+ } else {
+ results = treemapSingledimensional(data, width, height, xoffset, yoffset);
+ }
+
+ return results;
+ } // treemapSingledimensional - simple wrapper around squarify
+
+
+ function treemapSingledimensional(data, width, height, xoffset, yoffset) {
+ xoffset = typeof xoffset === 'undefined' ? 0 : xoffset;
+ yoffset = typeof yoffset === 'undefined' ? 0 : yoffset;
+ var rawtreemap = squarify(normalize(data, width * height), [], new Container(xoffset, yoffset, width, height), []);
+ return flattenTreemap(rawtreemap);
+ } // flattenTreemap - squarify implementation returns an array of arrays of coordinates
+ // because we have a new array everytime we switch to building a new row
+ // this converts it into an array of coordinates.
+
+
+ function flattenTreemap(rawtreemap) {
+ var flattreemap = [];
+ var i, j;
+
+ for (i = 0; i < rawtreemap.length; i++) {
+ for (j = 0; j < rawtreemap[i].length; j++) {
+ flattreemap.push(rawtreemap[i][j]);
+ }
+ }
+
+ return flattreemap;
+ } // squarify - as per the Bruls paper
+ // plus coordinates stack and containers so we get
+ // usable data out of it
+
+
+ function squarify(data, currentrow, container, stack) {
+ var length;
+ var nextdatapoint;
+ var newcontainer;
+
+ if (data.length === 0) {
+ stack.push(container.getCoordinates(currentrow));
+ return;
+ }
+
+ length = container.shortestEdge();
+ nextdatapoint = data[0];
+
+ if (improvesRatio(currentrow, nextdatapoint, length)) {
+ currentrow.push(nextdatapoint);
+ squarify(data.slice(1), currentrow, container, stack);
+ } else {
+ newcontainer = container.cutArea(sumArray(currentrow), stack);
+ stack.push(container.getCoordinates(currentrow));
+ squarify(data, [], newcontainer, stack);
+ }
+
+ return stack;
+ } // improveRatio - implements the worse calculation and comparision as given in Bruls
+ // (note the error in the original paper; fixed here)
+
+
+ function improvesRatio(currentrow, nextnode, length) {
+ var newrow;
+
+ if (currentrow.length === 0) {
+ return true;
+ }
+
+ newrow = currentrow.slice();
+ newrow.push(nextnode);
+ var currentratio = calculateRatio(currentrow, length);
+ var newratio = calculateRatio(newrow, length); // the pseudocode in the Bruls paper has the direction of the comparison
+ // wrong, this is the correct one.
+
+ return currentratio >= newratio;
+ } // calculateRatio - calculates the maximum width to height ratio of the
+ // boxes in this row
+
+
+ function calculateRatio(row, length) {
+ var min = Math.min.apply(Math, row);
+ var max = Math.max.apply(Math, row);
+ var sum = sumArray(row);
+ return Math.max(Math.pow(length, 2) * max / Math.pow(sum, 2), Math.pow(sum, 2) / (Math.pow(length, 2) * min));
+ } // isArray - checks if arr is an array
+
+
+ function isArray(arr) {
+ return arr && arr.constructor === Array;
+ } // sumArray - sums a single dimensional array
+
+
+ function sumArray(arr) {
+ var sum = 0;
+ var i;
+
+ for (i = 0; i < arr.length; i++) {
+ sum += arr[i];
+ }
+
+ return sum;
+ } // sumMultidimensionalArray - sums the values in a nested array (aka [[0,1],[[2,3]]])
+
+
+ function sumMultidimensionalArray(arr) {
+ var i,
+ total = 0;
+
+ if (isArray(arr[0])) {
+ for (i = 0; i < arr.length; i++) {
+ total += sumMultidimensionalArray(arr[i]);
+ }
+ } else {
+ total = sumArray(arr);
+ }
+
+ return total;
+ }
+
+ return treemapMultidimensional;
+ }();
+ })();
+
+ /**
+ * ApexCharts TreemapChart Class.
+ * @module TreemapChart
+ **/
+
+ var TreemapChart = /*#__PURE__*/function () {
+ function TreemapChart(ctx, xyRatios) {
+ _classCallCheck(this, TreemapChart);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.strokeWidth = this.w.config.stroke.width;
+ this.helpers = new TreemapHelpers(ctx);
+ this.dynamicAnim = this.w.config.chart.animations.dynamicAnimation;
+ this.labels = [];
+ }
+
+ _createClass(TreemapChart, [{
+ key: "draw",
+ value: function draw(series) {
+ var _this = this;
+
+ var w = this.w;
+ var graphics = new Graphics(this.ctx);
+ var fill = new Fill(this.ctx);
+ var ret = graphics.group({
+ class: 'apexcharts-treemap'
+ });
+ if (w.globals.noData) return ret;
+ var ser = [];
+ series.forEach(function (s) {
+ var d = s.map(function (v) {
+ return Math.abs(v);
+ });
+ ser.push(d);
+ });
+ this.negRange = this.helpers.checkColorRange();
+ w.config.series.forEach(function (s, i) {
+ s.data.forEach(function (l) {
+ if (!Array.isArray(_this.labels[i])) _this.labels[i] = [];
+
+ _this.labels[i].push(l.x);
+ });
+ });
+ var nodes = window.TreemapSquared.generate(ser, w.globals.gridWidth, w.globals.gridHeight);
+ nodes.forEach(function (node, i) {
+ var elSeries = graphics.group({
+ class: "apexcharts-series apexcharts-treemap-series",
+ seriesName: Utils$1.escapeString(w.globals.seriesNames[i]),
+ rel: i + 1,
+ 'data:realIndex': i
+ });
+
+ if (w.config.chart.dropShadow.enabled) {
+ var shadow = w.config.chart.dropShadow;
+ var filters = new Filters(_this.ctx);
+ filters.dropShadow(ret, shadow, i);
+ }
+
+ var elDataLabelWrap = graphics.group({
+ class: 'apexcharts-data-labels'
+ });
+ node.forEach(function (r, j) {
+ var x1 = r[0];
+ var y1 = r[1];
+ var x2 = r[2];
+ var y2 = r[3];
+ var elRect = graphics.drawRect(x1, y1, x2 - x1, y2 - y1, w.config.plotOptions.treemap.borderRadius, '#fff', 1, _this.strokeWidth, w.config.plotOptions.treemap.useFillColorAsStroke ? color : w.globals.stroke.colors[i]);
+ elRect.attr({
+ cx: x1,
+ cy: y1,
+ index: i,
+ i: i,
+ j: j,
+ width: x2 - x1,
+ height: y2 - y1
+ });
+
+ var colorProps = _this.helpers.getShadeColor(w.config.chart.type, i, j, _this.negRange);
+
+ var color = colorProps.color;
+
+ if (typeof w.config.series[i].data[j] !== 'undefined' && w.config.series[i].data[j].fillColor) {
+ color = w.config.series[i].data[j].fillColor;
+ }
+
+ var pathFill = fill.fillPath({
+ color: color,
+ seriesNumber: i,
+ dataPointIndex: j
+ });
+ elRect.node.classList.add('apexcharts-treemap-rect');
+ elRect.attr({
+ fill: pathFill
+ });
+
+ _this.helpers.addListeners(elRect);
+
+ var fromRect = {
+ x: x1 + (x2 - x1) / 2,
+ y: y1 + (y2 - y1) / 2,
+ width: 0,
+ height: 0
+ };
+ var toRect = {
+ x: x1,
+ y: y1,
+ width: x2 - x1,
+ height: y2 - y1
+ };
+
+ if (w.config.chart.animations.enabled && !w.globals.dataChanged) {
+ var speed = 1;
+
+ if (!w.globals.resized) {
+ speed = w.config.chart.animations.speed;
+ }
+
+ _this.animateTreemap(elRect, fromRect, toRect, speed);
+ }
+
+ if (w.globals.dataChanged) {
+ var _speed = 1;
+
+ if (_this.dynamicAnim.enabled && w.globals.shouldAnimate) {
+ _speed = _this.dynamicAnim.speed;
+
+ if (w.globals.previousPaths[i] && w.globals.previousPaths[i][j] && w.globals.previousPaths[i][j].rect) {
+ fromRect = w.globals.previousPaths[i][j].rect;
+ }
+
+ _this.animateTreemap(elRect, fromRect, toRect, _speed);
+ }
+ }
+
+ var fontSize = _this.getFontSize(r);
+
+ var formattedText = w.config.dataLabels.formatter(_this.labels[i][j], {
+ value: w.globals.series[i][j],
+ seriesIndex: i,
+ dataPointIndex: j,
+ w: w
+ });
+
+ if (w.config.plotOptions.treemap.dataLabels.format === 'truncate') {
+ fontSize = parseInt(w.config.dataLabels.style.fontSize, 10);
+ formattedText = _this.truncateLabels(formattedText, fontSize, x1, y1, x2, y2);
+ }
+
+ var dataLabels = _this.helpers.calculateDataLabels({
+ text: formattedText,
+ x: (x1 + x2) / 2,
+ y: (y1 + y2) / 2 + _this.strokeWidth / 2 + fontSize / 3,
+ i: i,
+ j: j,
+ colorProps: colorProps,
+ fontSize: fontSize,
+ series: series
+ });
+
+ if (w.config.dataLabels.enabled && dataLabels) {
+ _this.rotateToFitLabel(dataLabels, fontSize, formattedText, x1, y1, x2, y2);
+ }
+
+ elSeries.add(elRect);
+
+ if (dataLabels !== null) {
+ elSeries.add(dataLabels);
+ }
+ });
+ elSeries.add(elDataLabelWrap);
+ ret.add(elSeries);
+ });
+ return ret;
+ } // This calculates a font-size based upon
+ // average label length and the size of the box the label is
+ // going into. The maximum font size is set in chart config.
+
+ }, {
+ key: "getFontSize",
+ value: function getFontSize(coordinates) {
+ var w = this.w; // total length of labels (i.e [["Italy"],["Spain", "Greece"]] -> 16)
+
+ function totalLabelLength(arr) {
+ var i,
+ total = 0;
+
+ if (Array.isArray(arr[0])) {
+ for (i = 0; i < arr.length; i++) {
+ total += totalLabelLength(arr[i]);
+ }
+ } else {
+ for (i = 0; i < arr.length; i++) {
+ total += arr[i].length;
+ }
+ }
+
+ return total;
+ } // count of labels (i.e [["Italy"],["Spain", "Greece"]] -> 3)
+
+
+ function countLabels(arr) {
+ var i,
+ total = 0;
+
+ if (Array.isArray(arr[0])) {
+ for (i = 0; i < arr.length; i++) {
+ total += countLabels(arr[i]);
+ }
+ } else {
+ for (i = 0; i < arr.length; i++) {
+ total += 1;
+ }
+ }
+
+ return total;
+ }
+
+ var averagelabelsize = totalLabelLength(this.labels) / countLabels(this.labels);
+
+ function fontSize(width, height) {
+ // the font size should be proportional to the size of the box (and the value)
+ // otherwise you can end up creating a visual distortion where two boxes of identical
+ // size have different sized labels, and thus make it look as if the two boxes
+ // represent different sizes
+ var area = width * height;
+ var arearoot = Math.pow(area, 0.5);
+ return Math.min(arearoot / averagelabelsize, parseInt(w.config.dataLabels.style.fontSize, 10));
+ }
+
+ return fontSize(coordinates[2] - coordinates[0], coordinates[3] - coordinates[1]);
+ }
+ }, {
+ key: "rotateToFitLabel",
+ value: function rotateToFitLabel(elText, fontSize, text, x1, y1, x2, y2) {
+ var graphics = new Graphics(this.ctx);
+ var textRect = graphics.getTextRects(text, fontSize); //if the label fits better sideways then rotate it
+
+ if (textRect.width + this.w.config.stroke.width + 5 > x2 - x1 && textRect.width <= y2 - y1) {
+ var labelRotatingCenter = graphics.rotateAroundCenter(elText.node);
+ elText.node.setAttribute('transform', "rotate(-90 ".concat(labelRotatingCenter.x, " ").concat(labelRotatingCenter.y, ") translate(").concat(textRect.height / 3, ")"));
+ }
+ } // This is an alternative label formatting method that uses a
+ // consistent font size, and trims the edge of long labels
+
+ }, {
+ key: "truncateLabels",
+ value: function truncateLabels(text, fontSize, x1, y1, x2, y2) {
+ var graphics = new Graphics(this.ctx);
+ var textRect = graphics.getTextRects(text, fontSize); // Determine max width based on ideal orientation of text
+
+ var labelMaxWidth = textRect.width + this.w.config.stroke.width + 5 > x2 - x1 && y2 - y1 > x2 - x1 ? y2 - y1 : x2 - x1;
+ var truncatedText = graphics.getTextBasedOnMaxWidth({
+ text: text,
+ maxWidth: labelMaxWidth,
+ fontSize: fontSize
+ }); // Return empty label when text has been trimmed for very small rects
+
+ if (text.length !== truncatedText.length && labelMaxWidth / fontSize < 5) {
+ return '';
+ } else {
+ return truncatedText;
+ }
+ }
+ }, {
+ key: "animateTreemap",
+ value: function animateTreemap(el, fromRect, toRect, speed) {
+ var animations = new Animations(this.ctx);
+ animations.animateRect(el, {
+ x: fromRect.x,
+ y: fromRect.y,
+ width: fromRect.width,
+ height: fromRect.height
+ }, {
+ x: toRect.x,
+ y: toRect.y,
+ width: toRect.width,
+ height: toRect.height
+ }, speed, function () {
+ animations.animationCompleted(el);
+ });
+ }
+ }]);
+
+ return TreemapChart;
+ }();
+
+ var MINUTES_IN_DAY = 24 * 60;
+ var SECONDS_IN_DAY = MINUTES_IN_DAY * 60;
+ var MIN_ZOOM_DAYS = 10 / SECONDS_IN_DAY;
+ /**
+ * ApexCharts TimeScale Class for generating time ticks for x-axis.
+ *
+ * @module TimeScale
+ **/
+
+ var TimeScale = /*#__PURE__*/function () {
+ function TimeScale(ctx) {
+ _classCallCheck(this, TimeScale);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.timeScaleArray = [];
+ this.utc = this.w.config.xaxis.labels.datetimeUTC;
+ }
+
+ _createClass(TimeScale, [{
+ key: "calculateTimeScaleTicks",
+ value: function calculateTimeScaleTicks(minX, maxX) {
+ var _this = this;
+
+ var w = this.w; // null check when no series to show
+
+ if (w.globals.allSeriesCollapsed) {
+ w.globals.labels = [];
+ w.globals.timescaleLabels = [];
+ return [];
+ }
+
+ var dt = new DateTime(this.ctx);
+ var daysDiff = (maxX - minX) / (1000 * SECONDS_IN_DAY);
+ this.determineInterval(daysDiff);
+ w.globals.disableZoomIn = false;
+ w.globals.disableZoomOut = false;
+
+ if (daysDiff < MIN_ZOOM_DAYS) {
+ w.globals.disableZoomIn = true;
+ } else if (daysDiff > 50000) {
+ w.globals.disableZoomOut = true;
+ }
+
+ var timeIntervals = dt.getTimeUnitsfromTimestamp(minX, maxX, this.utc);
+ var daysWidthOnXAxis = w.globals.gridWidth / daysDiff;
+ var hoursWidthOnXAxis = daysWidthOnXAxis / 24;
+ var minutesWidthOnXAxis = hoursWidthOnXAxis / 60;
+ var secondsWidthOnXAxis = minutesWidthOnXAxis / 60;
+ var numberOfHours = Math.floor(daysDiff * 24);
+ var numberOfMinutes = Math.floor(daysDiff * MINUTES_IN_DAY);
+ var numberOfSeconds = Math.floor(daysDiff * SECONDS_IN_DAY);
+ var numberOfDays = Math.floor(daysDiff);
+ var numberOfMonths = Math.floor(daysDiff / 30);
+ var numberOfYears = Math.floor(daysDiff / 365);
+ var firstVal = {
+ minMillisecond: timeIntervals.minMillisecond,
+ minSecond: timeIntervals.minSecond,
+ minMinute: timeIntervals.minMinute,
+ minHour: timeIntervals.minHour,
+ minDate: timeIntervals.minDate,
+ minMonth: timeIntervals.minMonth,
+ minYear: timeIntervals.minYear
+ };
+ var currentMillisecond = firstVal.minMillisecond;
+ var currentSecond = firstVal.minSecond;
+ var currentMinute = firstVal.minMinute;
+ var currentHour = firstVal.minHour;
+ var currentMonthDate = firstVal.minDate;
+ var currentDate = firstVal.minDate;
+ var currentMonth = firstVal.minMonth;
+ var currentYear = firstVal.minYear;
+ var params = {
+ firstVal: firstVal,
+ currentMillisecond: currentMillisecond,
+ currentSecond: currentSecond,
+ currentMinute: currentMinute,
+ currentHour: currentHour,
+ currentMonthDate: currentMonthDate,
+ currentDate: currentDate,
+ currentMonth: currentMonth,
+ currentYear: currentYear,
+ daysWidthOnXAxis: daysWidthOnXAxis,
+ hoursWidthOnXAxis: hoursWidthOnXAxis,
+ minutesWidthOnXAxis: minutesWidthOnXAxis,
+ secondsWidthOnXAxis: secondsWidthOnXAxis,
+ numberOfSeconds: numberOfSeconds,
+ numberOfMinutes: numberOfMinutes,
+ numberOfHours: numberOfHours,
+ numberOfDays: numberOfDays,
+ numberOfMonths: numberOfMonths,
+ numberOfYears: numberOfYears
+ };
+
+ switch (this.tickInterval) {
+ case 'years':
+ {
+ this.generateYearScale(params);
+ break;
+ }
+
+ case 'months':
+ case 'half_year':
+ {
+ this.generateMonthScale(params);
+ break;
+ }
+
+ case 'months_days':
+ case 'months_fortnight':
+ case 'days':
+ case 'week_days':
+ {
+ this.generateDayScale(params);
+ break;
+ }
+
+ case 'hours':
+ {
+ this.generateHourScale(params);
+ break;
+ }
+
+ case 'minutes_fives':
+ case 'minutes':
+ this.generateMinuteScale(params);
+ break;
+
+ case 'seconds_tens':
+ case 'seconds_fives':
+ case 'seconds':
+ this.generateSecondScale(params);
+ break;
+ } // first, we will adjust the month values index
+ // as in the upper function, it is starting from 0
+ // we will start them from 1
+
+
+ var adjustedMonthInTimeScaleArray = this.timeScaleArray.map(function (ts) {
+ var defaultReturn = {
+ position: ts.position,
+ unit: ts.unit,
+ year: ts.year,
+ day: ts.day ? ts.day : 1,
+ hour: ts.hour ? ts.hour : 0,
+ month: ts.month + 1
+ };
+
+ if (ts.unit === 'month') {
+ return _objectSpread2(_objectSpread2({}, defaultReturn), {}, {
+ day: 1,
+ value: ts.value + 1
+ });
+ } else if (ts.unit === 'day' || ts.unit === 'hour') {
+ return _objectSpread2(_objectSpread2({}, defaultReturn), {}, {
+ value: ts.value
+ });
+ } else if (ts.unit === 'minute') {
+ return _objectSpread2(_objectSpread2({}, defaultReturn), {}, {
+ value: ts.value,
+ minute: ts.value
+ });
+ } else if (ts.unit === 'second') {
+ return _objectSpread2(_objectSpread2({}, defaultReturn), {}, {
+ value: ts.value,
+ minute: ts.minute,
+ second: ts.second
+ });
+ }
+
+ return ts;
+ });
+ var filteredTimeScale = adjustedMonthInTimeScaleArray.filter(function (ts) {
+ var modulo = 1;
+ var ticks = Math.ceil(w.globals.gridWidth / 120);
+ var value = ts.value;
+
+ if (w.config.xaxis.tickAmount !== undefined) {
+ ticks = w.config.xaxis.tickAmount;
+ }
+
+ if (adjustedMonthInTimeScaleArray.length > ticks) {
+ modulo = Math.floor(adjustedMonthInTimeScaleArray.length / ticks);
+ }
+
+ var shouldNotSkipUnit = false; // there is a big change in unit i.e days to months
+
+ var shouldNotPrint = false; // should skip these values
+
+ switch (_this.tickInterval) {
+ case 'years':
+ // make years label denser
+ if (ts.unit === 'year') {
+ shouldNotSkipUnit = true;
+ }
+
+ break;
+
+ case 'half_year':
+ modulo = 7;
+
+ if (ts.unit === 'year') {
+ shouldNotSkipUnit = true;
+ }
+
+ break;
+
+ case 'months':
+ modulo = 1;
+
+ if (ts.unit === 'year') {
+ shouldNotSkipUnit = true;
+ }
+
+ break;
+
+ case 'months_fortnight':
+ modulo = 15;
+
+ if (ts.unit === 'year' || ts.unit === 'month') {
+ shouldNotSkipUnit = true;
+ }
+
+ if (value === 30) {
+ shouldNotPrint = true;
+ }
+
+ break;
+
+ case 'months_days':
+ modulo = 10;
+
+ if (ts.unit === 'month') {
+ shouldNotSkipUnit = true;
+ }
+
+ if (value === 30) {
+ shouldNotPrint = true;
+ }
+
+ break;
+
+ case 'week_days':
+ modulo = 8;
+
+ if (ts.unit === 'month') {
+ shouldNotSkipUnit = true;
+ }
+
+ break;
+
+ case 'days':
+ modulo = 1;
+
+ if (ts.unit === 'month') {
+ shouldNotSkipUnit = true;
+ }
+
+ break;
+
+ case 'hours':
+ if (ts.unit === 'day') {
+ shouldNotSkipUnit = true;
+ }
+
+ break;
+
+ case 'minutes_fives':
+ if (value % 5 !== 0) {
+ shouldNotPrint = true;
+ }
+
+ break;
+
+ case 'seconds_tens':
+ if (value % 10 !== 0) {
+ shouldNotPrint = true;
+ }
+
+ break;
+
+ case 'seconds_fives':
+ if (value % 5 !== 0) {
+ shouldNotPrint = true;
+ }
+
+ break;
+ }
+
+ if (_this.tickInterval === 'hours' || _this.tickInterval === 'minutes_fives' || _this.tickInterval === 'seconds_tens' || _this.tickInterval === 'seconds_fives') {
+ if (!shouldNotPrint) {
+ return true;
+ }
+ } else {
+ if ((value % modulo === 0 || shouldNotSkipUnit) && !shouldNotPrint) {
+ return true;
+ }
+ }
+ });
+ return filteredTimeScale;
+ }
+ }, {
+ key: "recalcDimensionsBasedOnFormat",
+ value: function recalcDimensionsBasedOnFormat(filteredTimeScale, inverted) {
+ var w = this.w;
+ var reformattedTimescaleArray = this.formatDates(filteredTimeScale);
+ var removedOverlappingTS = this.removeOverlappingTS(reformattedTimescaleArray);
+ w.globals.timescaleLabels = removedOverlappingTS.slice(); // at this stage, we need to re-calculate coords of the grid as timeline labels may have altered the xaxis labels coords
+ // The reason we can't do this prior to this stage is because timeline labels depends on gridWidth, and as the ticks are calculated based on available gridWidth, there can be unknown number of ticks generated for different minX and maxX
+ // Dependency on Dimensions(), need to refactor correctly
+ // TODO - find an alternate way to avoid calling this Heavy method twice
+
+ var dimensions = new Dimensions(this.ctx);
+ dimensions.plotCoords();
+ }
+ }, {
+ key: "determineInterval",
+ value: function determineInterval(daysDiff) {
+ var yearsDiff = daysDiff / 365;
+ var hoursDiff = daysDiff * 24;
+ var minutesDiff = hoursDiff * 60;
+ var secondsDiff = minutesDiff * 60;
+
+ switch (true) {
+ case yearsDiff > 5:
+ this.tickInterval = 'years';
+ break;
+
+ case daysDiff > 800:
+ this.tickInterval = 'half_year';
+ break;
+
+ case daysDiff > 180:
+ this.tickInterval = 'months';
+ break;
+
+ case daysDiff > 90:
+ this.tickInterval = 'months_fortnight';
+ break;
+
+ case daysDiff > 60:
+ this.tickInterval = 'months_days';
+ break;
+
+ case daysDiff > 30:
+ this.tickInterval = 'week_days';
+ break;
+
+ case daysDiff > 2:
+ this.tickInterval = 'days';
+ break;
+
+ case hoursDiff > 2.4:
+ this.tickInterval = 'hours';
+ break;
+
+ case minutesDiff > 15:
+ this.tickInterval = 'minutes_fives';
+ break;
+
+ case minutesDiff > 5:
+ this.tickInterval = 'minutes';
+ break;
+
+ case minutesDiff > 1:
+ this.tickInterval = 'seconds_tens';
+ break;
+
+ case secondsDiff > 20:
+ this.tickInterval = 'seconds_fives';
+ break;
+
+ default:
+ this.tickInterval = 'seconds';
+ break;
+ }
+ }
+ }, {
+ key: "generateYearScale",
+ value: function generateYearScale(_ref) {
+ var firstVal = _ref.firstVal,
+ currentMonth = _ref.currentMonth,
+ currentYear = _ref.currentYear,
+ daysWidthOnXAxis = _ref.daysWidthOnXAxis,
+ numberOfYears = _ref.numberOfYears;
+ var firstTickValue = firstVal.minYear;
+ var firstTickPosition = 0;
+ var dt = new DateTime(this.ctx);
+ var unit = 'year';
+
+ if (firstVal.minDate > 1 || firstVal.minMonth > 0) {
+ var remainingDays = dt.determineRemainingDaysOfYear(firstVal.minYear, firstVal.minMonth, firstVal.minDate); // remainingDaysofFirstMonth is used to reacht the 2nd tick position
+
+ var remainingDaysOfFirstYear = dt.determineDaysOfYear(firstVal.minYear) - remainingDays + 1; // calculate the first tick position
+
+ firstTickPosition = remainingDaysOfFirstYear * daysWidthOnXAxis;
+ firstTickValue = firstVal.minYear + 1; // push the first tick in the array
+
+ this.timeScaleArray.push({
+ position: firstTickPosition,
+ value: firstTickValue,
+ unit: unit,
+ year: firstTickValue,
+ month: Utils$1.monthMod(currentMonth + 1)
+ });
+ } else if (firstVal.minDate === 1 && firstVal.minMonth === 0) {
+ // push the first tick in the array
+ this.timeScaleArray.push({
+ position: firstTickPosition,
+ value: firstTickValue,
+ unit: unit,
+ year: currentYear,
+ month: Utils$1.monthMod(currentMonth + 1)
+ });
+ }
+
+ var year = firstTickValue;
+ var pos = firstTickPosition; // keep drawing rest of the ticks
+
+ for (var i = 0; i < numberOfYears; i++) {
+ year++;
+ pos = dt.determineDaysOfYear(year - 1) * daysWidthOnXAxis + pos;
+ this.timeScaleArray.push({
+ position: pos,
+ value: year,
+ unit: unit,
+ year: year,
+ month: 1
+ });
+ }
+ }
+ }, {
+ key: "generateMonthScale",
+ value: function generateMonthScale(_ref2) {
+ var firstVal = _ref2.firstVal,
+ currentMonthDate = _ref2.currentMonthDate,
+ currentMonth = _ref2.currentMonth,
+ currentYear = _ref2.currentYear,
+ daysWidthOnXAxis = _ref2.daysWidthOnXAxis,
+ numberOfMonths = _ref2.numberOfMonths;
+ var firstTickValue = currentMonth;
+ var firstTickPosition = 0;
+ var dt = new DateTime(this.ctx);
+ var unit = 'month';
+ var yrCounter = 0;
+
+ if (firstVal.minDate > 1) {
+ // remainingDaysofFirstMonth is used to reacht the 2nd tick position
+ var remainingDaysOfFirstMonth = dt.determineDaysOfMonths(currentMonth + 1, firstVal.minYear) - currentMonthDate + 1; // calculate the first tick position
+
+ firstTickPosition = remainingDaysOfFirstMonth * daysWidthOnXAxis;
+ firstTickValue = Utils$1.monthMod(currentMonth + 1);
+ var year = currentYear + yrCounter;
+
+ var _month = Utils$1.monthMod(firstTickValue);
+
+ var value = firstTickValue; // it's Jan, so update the year
+
+ if (firstTickValue === 0) {
+ unit = 'year';
+ value = year;
+ _month = 1;
+ yrCounter += 1;
+ year = year + yrCounter;
+ } // push the first tick in the array
+
+
+ this.timeScaleArray.push({
+ position: firstTickPosition,
+ value: value,
+ unit: unit,
+ year: year,
+ month: _month
+ });
+ } else {
+ // push the first tick in the array
+ this.timeScaleArray.push({
+ position: firstTickPosition,
+ value: firstTickValue,
+ unit: unit,
+ year: currentYear,
+ month: Utils$1.monthMod(currentMonth)
+ });
+ }
+
+ var month = firstTickValue + 1;
+ var pos = firstTickPosition; // keep drawing rest of the ticks
+
+ for (var i = 0, j = 1; i < numberOfMonths; i++, j++) {
+ month = Utils$1.monthMod(month);
+
+ if (month === 0) {
+ unit = 'year';
+ yrCounter += 1;
+ } else {
+ unit = 'month';
+ }
+
+ var _year = this._getYear(currentYear, month, yrCounter);
+
+ pos = dt.determineDaysOfMonths(month, _year) * daysWidthOnXAxis + pos;
+ var monthVal = month === 0 ? _year : month;
+ this.timeScaleArray.push({
+ position: pos,
+ value: monthVal,
+ unit: unit,
+ year: _year,
+ month: month === 0 ? 1 : month
+ });
+ month++;
+ }
+ }
+ }, {
+ key: "generateDayScale",
+ value: function generateDayScale(_ref3) {
+ var firstVal = _ref3.firstVal,
+ currentMonth = _ref3.currentMonth,
+ currentYear = _ref3.currentYear,
+ hoursWidthOnXAxis = _ref3.hoursWidthOnXAxis,
+ numberOfDays = _ref3.numberOfDays;
+ var dt = new DateTime(this.ctx);
+ var unit = 'day';
+ var firstTickValue = firstVal.minDate + 1;
+ var date = firstTickValue;
+
+ var changeMonth = function changeMonth(dateVal, month, year) {
+ var monthdays = dt.determineDaysOfMonths(month + 1, year);
+
+ if (dateVal > monthdays) {
+ month = month + 1;
+ date = 1;
+ unit = 'month';
+ val = month;
+ return month;
+ }
+
+ return month;
+ };
+
+ var remainingHours = 24 - firstVal.minHour;
+ var yrCounter = 0; // calculate the first tick position
+
+ var firstTickPosition = remainingHours * hoursWidthOnXAxis;
+ var val = firstTickValue;
+ var month = changeMonth(date, currentMonth, currentYear);
+
+ if (firstVal.minHour === 0 && firstVal.minDate === 1) {
+ // the first value is the first day of month
+ firstTickPosition = 0;
+ val = Utils$1.monthMod(firstVal.minMonth);
+ unit = 'month';
+ date = firstVal.minDate; // numberOfDays++
+ // removed the above line to fix https://github.com/apexcharts/apexcharts.js/issues/305#issuecomment-1019520513
+ } else if (firstVal.minDate !== 1 && firstVal.minHour === 0 && firstVal.minMinute === 0) {
+ // fixes apexcharts/apexcharts.js/issues/1730
+ firstTickPosition = 0;
+ firstTickValue = firstVal.minDate;
+ date = firstTickValue;
+ val = firstTickValue; // in case it's the last date of month, we need to check it
+
+ month = changeMonth(date, currentMonth, currentYear);
+ } // push the first tick in the array
+
+
+ this.timeScaleArray.push({
+ position: firstTickPosition,
+ value: val,
+ unit: unit,
+ year: this._getYear(currentYear, month, yrCounter),
+ month: Utils$1.monthMod(month),
+ day: date
+ });
+ var pos = firstTickPosition; // keep drawing rest of the ticks
+
+ for (var i = 0; i < numberOfDays; i++) {
+ date += 1;
+ unit = 'day';
+ month = changeMonth(date, month, this._getYear(currentYear, month, yrCounter));
+
+ var year = this._getYear(currentYear, month, yrCounter);
+
+ pos = 24 * hoursWidthOnXAxis + pos;
+ var value = date === 1 ? Utils$1.monthMod(month) : date;
+ this.timeScaleArray.push({
+ position: pos,
+ value: value,
+ unit: unit,
+ year: year,
+ month: Utils$1.monthMod(month),
+ day: value
+ });
+ }
+ }
+ }, {
+ key: "generateHourScale",
+ value: function generateHourScale(_ref4) {
+ var firstVal = _ref4.firstVal,
+ currentDate = _ref4.currentDate,
+ currentMonth = _ref4.currentMonth,
+ currentYear = _ref4.currentYear,
+ minutesWidthOnXAxis = _ref4.minutesWidthOnXAxis,
+ numberOfHours = _ref4.numberOfHours;
+ var dt = new DateTime(this.ctx);
+ var yrCounter = 0;
+ var unit = 'hour';
+
+ var changeDate = function changeDate(dateVal, month) {
+ var monthdays = dt.determineDaysOfMonths(month + 1, currentYear);
+
+ if (dateVal > monthdays) {
+ date = 1;
+ month = month + 1;
+ }
+
+ return {
+ month: month,
+ date: date
+ };
+ };
+
+ var changeMonth = function changeMonth(dateVal, month) {
+ var monthdays = dt.determineDaysOfMonths(month + 1, currentYear);
+
+ if (dateVal > monthdays) {
+ month = month + 1;
+ return month;
+ }
+
+ return month;
+ }; // factor in minSeconds as well
+
+
+ var remainingMins = 60 - (firstVal.minMinute + firstVal.minSecond / 60.0);
+ var firstTickPosition = remainingMins * minutesWidthOnXAxis;
+ var firstTickValue = firstVal.minHour + 1;
+ var hour = firstTickValue;
+
+ if (remainingMins === 60) {
+ firstTickPosition = 0;
+ firstTickValue = firstVal.minHour;
+ hour = firstTickValue;
+ }
+
+ var date = currentDate; // we need to apply date switching logic here as well, to avoid duplicated labels
+
+ if (hour >= 24) {
+ hour = 0;
+ date += 1;
+ unit = 'day';
+ }
+
+ var checkNextMonth = changeDate(date, currentMonth);
+ var month = checkNextMonth.month;
+ month = changeMonth(date, month); // push the first tick in the array
+
+ this.timeScaleArray.push({
+ position: firstTickPosition,
+ value: firstTickValue,
+ unit: unit,
+ day: date,
+ hour: hour,
+ year: currentYear,
+ month: Utils$1.monthMod(month)
+ });
+ hour++;
+ var pos = firstTickPosition; // keep drawing rest of the ticks
+
+ for (var i = 0; i < numberOfHours; i++) {
+ unit = 'hour';
+
+ if (hour >= 24) {
+ hour = 0;
+ date += 1;
+ unit = 'day';
+
+ var _checkNextMonth = changeDate(date, month);
+
+ month = _checkNextMonth.month;
+ month = changeMonth(date, month);
+ }
+
+ var year = this._getYear(currentYear, month, yrCounter);
+
+ pos = 60 * minutesWidthOnXAxis + pos;
+ var val = hour === 0 ? date : hour;
+ this.timeScaleArray.push({
+ position: pos,
+ value: val,
+ unit: unit,
+ hour: hour,
+ day: date,
+ year: year,
+ month: Utils$1.monthMod(month)
+ });
+ hour++;
+ }
+ }
+ }, {
+ key: "generateMinuteScale",
+ value: function generateMinuteScale(_ref5) {
+ var currentMillisecond = _ref5.currentMillisecond,
+ currentSecond = _ref5.currentSecond,
+ currentMinute = _ref5.currentMinute,
+ currentHour = _ref5.currentHour,
+ currentDate = _ref5.currentDate,
+ currentMonth = _ref5.currentMonth,
+ currentYear = _ref5.currentYear,
+ minutesWidthOnXAxis = _ref5.minutesWidthOnXAxis,
+ secondsWidthOnXAxis = _ref5.secondsWidthOnXAxis,
+ numberOfMinutes = _ref5.numberOfMinutes;
+ var yrCounter = 0;
+ var unit = 'minute';
+ var remainingSecs = 60 - currentSecond;
+ var firstTickPosition = (remainingSecs - currentMillisecond / 1000) * secondsWidthOnXAxis;
+ var minute = currentMinute + 1;
+ var date = currentDate;
+ var month = currentMonth;
+ var year = currentYear;
+ var hour = currentHour;
+ var pos = firstTickPosition;
+
+ for (var i = 0; i < numberOfMinutes; i++) {
+ if (minute >= 60) {
+ minute = 0;
+ hour += 1;
+
+ if (hour === 24) {
+ hour = 0;
+ }
+ }
+
+ this.timeScaleArray.push({
+ position: pos,
+ value: minute,
+ unit: unit,
+ hour: hour,
+ minute: minute,
+ day: date,
+ year: this._getYear(year, month, yrCounter),
+ month: Utils$1.monthMod(month)
+ });
+ pos += minutesWidthOnXAxis;
+ minute++;
+ }
+ }
+ }, {
+ key: "generateSecondScale",
+ value: function generateSecondScale(_ref6) {
+ var currentMillisecond = _ref6.currentMillisecond,
+ currentSecond = _ref6.currentSecond,
+ currentMinute = _ref6.currentMinute,
+ currentHour = _ref6.currentHour,
+ currentDate = _ref6.currentDate,
+ currentMonth = _ref6.currentMonth,
+ currentYear = _ref6.currentYear,
+ secondsWidthOnXAxis = _ref6.secondsWidthOnXAxis,
+ numberOfSeconds = _ref6.numberOfSeconds;
+ var yrCounter = 0;
+ var unit = 'second';
+ var remainingMillisecs = 1000 - currentMillisecond;
+ var firstTickPosition = remainingMillisecs / 1000 * secondsWidthOnXAxis;
+ var second = currentSecond + 1;
+ var minute = currentMinute;
+ var date = currentDate;
+ var month = currentMonth;
+ var year = currentYear;
+ var hour = currentHour;
+ var pos = firstTickPosition;
+
+ for (var i = 0; i < numberOfSeconds; i++) {
+ if (second >= 60) {
+ minute++;
+ second = 0;
+
+ if (minute >= 60) {
+ hour++;
+ minute = 0;
+
+ if (hour === 24) {
+ hour = 0;
+ }
+ }
+ }
+
+ this.timeScaleArray.push({
+ position: pos,
+ value: second,
+ unit: unit,
+ hour: hour,
+ minute: minute,
+ second: second,
+ day: date,
+ year: this._getYear(year, month, yrCounter),
+ month: Utils$1.monthMod(month)
+ });
+ pos += secondsWidthOnXAxis;
+ second++;
+ }
+ }
+ }, {
+ key: "createRawDateString",
+ value: function createRawDateString(ts, value) {
+ var raw = ts.year;
+
+ if (ts.month === 0) {
+ // invalid month, correct it
+ ts.month = 1;
+ }
+
+ raw += '-' + ('0' + ts.month.toString()).slice(-2); // unit is day
+
+ if (ts.unit === 'day') {
+ raw += ts.unit === 'day' ? '-' + ('0' + value).slice(-2) : '-01';
+ } else {
+ raw += '-' + ('0' + (ts.day ? ts.day : '1')).slice(-2);
+ } // unit is hour
+
+
+ if (ts.unit === 'hour') {
+ raw += ts.unit === 'hour' ? 'T' + ('0' + value).slice(-2) : 'T00';
+ } else {
+ raw += 'T' + ('0' + (ts.hour ? ts.hour : '0')).slice(-2);
+ }
+
+ if (ts.unit === 'minute') {
+ raw += ':' + ('0' + value).slice(-2);
+ } else {
+ raw += ':' + (ts.minute ? ('0' + ts.minute).slice(-2) : '00');
+ }
+
+ if (ts.unit === 'second') {
+ raw += ':' + ('0' + value).slice(-2);
+ } else {
+ raw += ':00';
+ }
+
+ if (this.utc) {
+ raw += '.000Z';
+ }
+
+ return raw;
+ }
+ }, {
+ key: "formatDates",
+ value: function formatDates(filteredTimeScale) {
+ var _this2 = this;
+
+ var w = this.w;
+ var reformattedTimescaleArray = filteredTimeScale.map(function (ts) {
+ var value = ts.value.toString();
+ var dt = new DateTime(_this2.ctx);
+
+ var raw = _this2.createRawDateString(ts, value);
+
+ var dateToFormat = dt.getDate(dt.parseDate(raw));
+
+ if (!_this2.utc) {
+ // Fixes #1726, #1544, #1485, #1255
+ dateToFormat = dt.getDate(dt.parseDateWithTimezone(raw));
+ }
+
+ if (w.config.xaxis.labels.format === undefined) {
+ var customFormat = 'dd MMM';
+ var dtFormatter = w.config.xaxis.labels.datetimeFormatter;
+ if (ts.unit === 'year') customFormat = dtFormatter.year;
+ if (ts.unit === 'month') customFormat = dtFormatter.month;
+ if (ts.unit === 'day') customFormat = dtFormatter.day;
+ if (ts.unit === 'hour') customFormat = dtFormatter.hour;
+ if (ts.unit === 'minute') customFormat = dtFormatter.minute;
+ if (ts.unit === 'second') customFormat = dtFormatter.second;
+ value = dt.formatDate(dateToFormat, customFormat);
+ } else {
+ value = dt.formatDate(dateToFormat, w.config.xaxis.labels.format);
+ }
+
+ return {
+ dateString: raw,
+ position: ts.position,
+ value: value,
+ unit: ts.unit,
+ year: ts.year,
+ month: ts.month
+ };
+ });
+ return reformattedTimescaleArray;
+ }
+ }, {
+ key: "removeOverlappingTS",
+ value: function removeOverlappingTS(arr) {
+ var _this3 = this;
+
+ var graphics = new Graphics(this.ctx);
+ var equalLabelLengthFlag = false; // These labels got same length?
+
+ var constantLabelWidth; // If true, what is the constant length to use
+
+ if (arr.length > 0 && // check arr length
+ arr[0].value && // check arr[0] contains value
+ arr.every(function (lb) {
+ return lb.value.length === arr[0].value.length;
+ }) // check every arr label value is the same as the first one
+ ) {
+ equalLabelLengthFlag = true; // These labels got same length
+
+ constantLabelWidth = graphics.getTextRects(arr[0].value).width; // The constant label width to use
+ }
+
+ var lastDrawnIndex = 0;
+ var filteredArray = arr.map(function (item, index) {
+ if (index > 0 && _this3.w.config.xaxis.labels.hideOverlappingLabels) {
+ var prevLabelWidth = !equalLabelLengthFlag // if vary in label length
+ ? graphics.getTextRects(arr[lastDrawnIndex].value).width // get individual length
+ : constantLabelWidth; // else: use constant length
+
+ var prevPos = arr[lastDrawnIndex].position;
+ var pos = item.position;
+
+ if (pos > prevPos + prevLabelWidth + 10) {
+ lastDrawnIndex = index;
+ return item;
+ } else {
+ return null;
+ }
+ } else {
+ return item;
+ }
+ });
+ filteredArray = filteredArray.filter(function (f) {
+ return f !== null;
+ });
+ return filteredArray;
+ }
+ }, {
+ key: "_getYear",
+ value: function _getYear(currentYear, month, yrCounter) {
+ return currentYear + Math.floor(month / 12) + yrCounter;
+ }
+ }]);
+
+ return TimeScale;
+ }();
+
+ /**
+ * ApexCharts Core Class responsible for major calculations and creating elements.
+ *
+ * @module Core
+ **/
+
+ var Core = /*#__PURE__*/function () {
+ function Core(el, ctx) {
+ _classCallCheck(this, Core);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ this.el = el;
+ } // get data and store into appropriate vars
+
+
+ _createClass(Core, [{
+ key: "setupElements",
+ value: function setupElements() {
+ var gl = this.w.globals;
+ var cnf = this.w.config; // const graphics = new Graphics(this.ctx)
+
+ var ct = cnf.chart.type;
+ var axisChartsArrTypes = ['line', 'area', 'bar', 'rangeBar', 'rangeArea', 'candlestick', 'boxPlot', 'scatter', 'bubble', 'radar', 'heatmap', 'treemap'];
+ var xyChartsArrTypes = ['line', 'area', 'bar', 'rangeBar', 'rangeArea', 'candlestick', 'boxPlot', 'scatter', 'bubble'];
+ gl.axisCharts = axisChartsArrTypes.indexOf(ct) > -1;
+ gl.xyCharts = xyChartsArrTypes.indexOf(ct) > -1;
+ gl.isBarHorizontal = (cnf.chart.type === 'bar' || cnf.chart.type === 'rangeBar' || cnf.chart.type === 'boxPlot') && cnf.plotOptions.bar.horizontal;
+ gl.chartClass = '.apexcharts' + gl.chartID;
+ gl.dom.baseEl = this.el;
+ gl.dom.elWrap = document.createElement('div');
+ Graphics.setAttrs(gl.dom.elWrap, {
+ id: gl.chartClass.substring(1),
+ class: 'apexcharts-canvas ' + gl.chartClass.substring(1)
+ });
+ this.el.appendChild(gl.dom.elWrap);
+ gl.dom.Paper = new window.SVG.Doc(gl.dom.elWrap);
+ gl.dom.Paper.attr({
+ class: 'apexcharts-svg',
+ 'xmlns:data': 'ApexChartsNS',
+ transform: "translate(".concat(cnf.chart.offsetX, ", ").concat(cnf.chart.offsetY, ")")
+ });
+ gl.dom.Paper.node.style.background = cnf.theme.mode === 'dark' && !cnf.chart.background ? 'rgba(0, 0, 0, 0.8)' : cnf.chart.background;
+ this.setSVGDimensions(); // append foreignElement (legend's parent)
+ // legend is kept in foreignElement to be included while exporting
+ // removing foreignElement and creating legend through HTML will not render legend in export
+
+ gl.dom.elLegendForeign = document.createElementNS(gl.SVGNS, 'foreignObject');
+ Graphics.setAttrs(gl.dom.elLegendForeign, {
+ x: 0,
+ y: 0,
+ width: gl.svgWidth,
+ height: gl.svgHeight
+ });
+ gl.dom.elLegendWrap = document.createElement('div');
+ gl.dom.elLegendWrap.classList.add('apexcharts-legend');
+ gl.dom.elLegendWrap.setAttribute('xmlns', 'http://www.w3.org/1999/xhtml');
+ gl.dom.elLegendForeign.appendChild(gl.dom.elLegendWrap);
+ gl.dom.Paper.node.appendChild(gl.dom.elLegendForeign); // the elGraphical is the parent of all primary visuals
+
+ gl.dom.elGraphical = gl.dom.Paper.group().attr({
+ class: 'apexcharts-inner apexcharts-graphical'
+ });
+ gl.dom.elDefs = gl.dom.Paper.defs();
+ gl.dom.Paper.add(gl.dom.elGraphical);
+ gl.dom.elGraphical.add(gl.dom.elDefs);
+ }
+ }, {
+ key: "plotChartType",
+ value: function plotChartType(ser, xyRatios) {
+ var w = this.w;
+ var cnf = w.config;
+ var gl = w.globals;
+ var lineSeries = {
+ series: [],
+ i: []
+ };
+ var areaSeries = {
+ series: [],
+ i: []
+ };
+ var scatterSeries = {
+ series: [],
+ i: []
+ };
+ var bubbleSeries = {
+ series: [],
+ i: []
+ };
+ var columnSeries = {
+ series: [],
+ i: []
+ };
+ var candlestickSeries = {
+ series: [],
+ i: []
+ };
+ var boxplotSeries = {
+ series: [],
+ i: []
+ };
+ var rangeBarSeries = {
+ series: [],
+ i: []
+ };
+ var rangeAreaSeries = {
+ series: [],
+ seriesRangeEnd: [],
+ i: []
+ };
+ var chartType = cnf.chart.type !== undefined ? cnf.chart.type : 'line'; // Check if the user has specified a type for any series.
+
+ var comboCount = 0;
+ gl.series.map(function (serie, st) {
+ // The default type for chart is "line" and the default for series is the
+ // chart type, therefore, if the types of all series match the chart type,
+ // this should not be considered a combo chart.
+ // Combo charts are explicitly excluded from stacking with the exception
+ // that series of type "bar" can be stacked if the user sets "stackOnlyBar"
+ // true.
+ if (typeof ser[st].type !== 'undefined') {
+ if (ser[st].type === 'column' || ser[st].type === 'bar') {
+ if (gl.series.length > 1 && cnf.plotOptions.bar.horizontal) {
+ // horizontal bars not supported in mixed charts, hence show a warning
+ console.warn('Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`');
+ }
+
+ columnSeries.series.push(serie);
+ columnSeries.i.push(st);
+
+ if (chartType !== 'bar') {
+ comboCount++;
+ }
+
+ w.globals.columnSeries = columnSeries.series;
+ } else if (ser[st].type === 'area') {
+ areaSeries.series.push(serie);
+ areaSeries.i.push(st);
+
+ if (chartType !== ser[st].type) {
+ comboCount++;
+ }
+ } else if (ser[st].type === 'line') {
+ lineSeries.series.push(serie);
+ lineSeries.i.push(st);
+
+ if (chartType !== ser[st].type) {
+ comboCount++;
+ }
+ } else if (ser[st].type === 'scatter') {
+ scatterSeries.series.push(serie);
+ scatterSeries.i.push(st);
+ } else if (ser[st].type === 'bubble') {
+ bubbleSeries.series.push(serie);
+ bubbleSeries.i.push(st);
+
+ if (chartType !== ser[st].type) {
+ comboCount++;
+ }
+ } else if (ser[st].type === 'candlestick') {
+ candlestickSeries.series.push(serie);
+ candlestickSeries.i.push(st);
+
+ if (chartType !== ser[st].type) {
+ comboCount++;
+ }
+ } else if (ser[st].type === 'boxPlot') {
+ boxplotSeries.series.push(serie);
+ boxplotSeries.i.push(st);
+
+ if (chartType !== ser[st].type) {
+ comboCount++;
+ }
+ } else if (ser[st].type === 'rangeBar') {
+ rangeBarSeries.series.push(serie);
+ rangeBarSeries.i.push(st);
+
+ if (chartType !== ser[st].type) {
+ comboCount++;
+ }
+ } else if (ser[st].type === 'rangeArea') {
+ rangeAreaSeries.series.push(gl.seriesRangeStart[st]);
+ rangeAreaSeries.seriesRangeEnd.push(gl.seriesRangeEnd[st]);
+ rangeAreaSeries.i.push(st);
+
+ if (chartType !== ser[st].type) {
+ comboCount++;
+ }
+ } else {
+ // user has specified type, but it is not valid (other than line/area/column)
+ console.warn('You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble/candlestick/boxPlot/rangeBar/rangeArea');
+ }
+ } else {
+ lineSeries.series.push(serie);
+ lineSeries.i.push(st);
+ }
+ });
+ gl.comboCharts || (gl.comboCharts = comboCount > 0);
+ var line = new Line(this.ctx, xyRatios);
+ var boxCandlestick = new BoxCandleStick(this.ctx, xyRatios);
+ this.ctx.pie = new Pie(this.ctx);
+ var radialBar = new Radial(this.ctx);
+ this.ctx.rangeBar = new RangeBar(this.ctx, xyRatios);
+ var radar = new Radar(this.ctx);
+ var elGraph = [];
+
+ if (gl.comboCharts) {
+ if (areaSeries.series.length > 0) {
+ elGraph.push(line.draw(areaSeries.series, 'area', areaSeries.i));
+ }
+
+ if (columnSeries.series.length > 0) {
+ if (w.config.chart.stacked) {
+ var barStacked = new BarStacked(this.ctx, xyRatios);
+ elGraph.push(barStacked.draw(columnSeries.series, columnSeries.i));
+ } else {
+ this.ctx.bar = new Bar(this.ctx, xyRatios);
+ elGraph.push(this.ctx.bar.draw(columnSeries.series, columnSeries.i));
+ }
+ }
+
+ if (rangeAreaSeries.series.length > 0) {
+ elGraph.push(line.draw(rangeAreaSeries.series, 'rangeArea', rangeAreaSeries.i, rangeAreaSeries.seriesRangeEnd));
+ }
+
+ if (lineSeries.series.length > 0) {
+ elGraph.push(line.draw(lineSeries.series, 'line', lineSeries.i));
+ }
+
+ if (candlestickSeries.series.length > 0) {
+ elGraph.push(boxCandlestick.draw(candlestickSeries.series, 'candlestick', candlestickSeries.i));
+ }
+
+ if (boxplotSeries.series.length > 0) {
+ elGraph.push(boxCandlestick.draw(boxplotSeries.series, 'boxPlot', boxplotSeries.i));
+ }
+
+ if (rangeBarSeries.series.length > 0) {
+ elGraph.push(this.ctx.rangeBar.draw(rangeBarSeries.series, rangeBarSeries.i));
+ }
+
+ if (scatterSeries.series.length > 0) {
+ var scatterLine = new Line(this.ctx, xyRatios, true);
+ elGraph.push(scatterLine.draw(scatterSeries.series, 'scatter', scatterSeries.i));
+ }
+
+ if (bubbleSeries.series.length > 0) {
+ var bubbleLine = new Line(this.ctx, xyRatios, true);
+ elGraph.push(bubbleLine.draw(bubbleSeries.series, 'bubble', bubbleSeries.i));
+ }
+ } else {
+ switch (cnf.chart.type) {
+ case 'line':
+ elGraph = line.draw(gl.series, 'line');
+ break;
+
+ case 'area':
+ elGraph = line.draw(gl.series, 'area');
+ break;
+
+ case 'bar':
+ if (cnf.chart.stacked) {
+ var _barStacked = new BarStacked(this.ctx, xyRatios);
+
+ elGraph = _barStacked.draw(gl.series);
+ } else {
+ this.ctx.bar = new Bar(this.ctx, xyRatios);
+ elGraph = this.ctx.bar.draw(gl.series);
+ }
+
+ break;
+
+ case 'candlestick':
+ var candleStick = new BoxCandleStick(this.ctx, xyRatios);
+ elGraph = candleStick.draw(gl.series, 'candlestick');
+ break;
+
+ case 'boxPlot':
+ var boxPlot = new BoxCandleStick(this.ctx, xyRatios);
+ elGraph = boxPlot.draw(gl.series, cnf.chart.type);
+ break;
+
+ case 'rangeBar':
+ elGraph = this.ctx.rangeBar.draw(gl.series);
+ break;
+
+ case 'rangeArea':
+ elGraph = line.draw(gl.seriesRangeStart, 'rangeArea', undefined, gl.seriesRangeEnd);
+ break;
+
+ case 'heatmap':
+ var heatmap = new HeatMap(this.ctx, xyRatios);
+ elGraph = heatmap.draw(gl.series);
+ break;
+
+ case 'treemap':
+ var treemap = new TreemapChart(this.ctx, xyRatios);
+ elGraph = treemap.draw(gl.series);
+ break;
+
+ case 'pie':
+ case 'donut':
+ case 'polarArea':
+ elGraph = this.ctx.pie.draw(gl.series);
+ break;
+
+ case 'radialBar':
+ elGraph = radialBar.draw(gl.series);
+ break;
+
+ case 'radar':
+ elGraph = radar.draw(gl.series);
+ break;
+
+ default:
+ elGraph = line.draw(gl.series);
+ }
+ }
+
+ return elGraph;
+ }
+ }, {
+ key: "setSVGDimensions",
+ value: function setSVGDimensions() {
+ var gl = this.w.globals;
+ var cnf = this.w.config;
+ gl.svgWidth = cnf.chart.width;
+ gl.svgHeight = cnf.chart.height;
+ var elDim = Utils$1.getDimensions(this.el);
+ var widthUnit = cnf.chart.width.toString().split(/[0-9]+/g).pop();
+
+ if (widthUnit === '%') {
+ if (Utils$1.isNumber(elDim[0])) {
+ if (elDim[0].width === 0) {
+ elDim = Utils$1.getDimensions(this.el.parentNode);
+ }
+
+ gl.svgWidth = elDim[0] * parseInt(cnf.chart.width, 10) / 100;
+ }
+ } else if (widthUnit === 'px' || widthUnit === '') {
+ gl.svgWidth = parseInt(cnf.chart.width, 10);
+ }
+
+ var heightUnit = cnf.chart.height.toString().split(/[0-9]+/g).pop();
+
+ if (gl.svgHeight !== 'auto' && gl.svgHeight !== '') {
+ if (heightUnit === '%') {
+ var elParentDim = Utils$1.getDimensions(this.el.parentNode);
+ gl.svgHeight = elParentDim[1] * parseInt(cnf.chart.height, 10) / 100;
+ } else {
+ gl.svgHeight = parseInt(cnf.chart.height, 10);
+ }
+ } else {
+ if (gl.axisCharts) {
+ gl.svgHeight = gl.svgWidth / 1.61;
+ } else {
+ gl.svgHeight = gl.svgWidth / 1.2;
+ }
+ }
+
+ if (gl.svgWidth < 0) gl.svgWidth = 0;
+ if (gl.svgHeight < 0) gl.svgHeight = 0;
+ Graphics.setAttrs(gl.dom.Paper.node, {
+ width: gl.svgWidth,
+ height: gl.svgHeight
+ });
+
+ if (heightUnit !== '%') {
+ // fixes https://github.com/apexcharts/apexcharts.js/issues/2059
+ var offsetY = cnf.chart.sparkline.enabled ? 0 : gl.axisCharts ? cnf.chart.parentHeightOffset : 0;
+ gl.dom.Paper.node.parentNode.parentNode.style.minHeight = gl.svgHeight + offsetY + 'px';
+ }
+
+ gl.dom.elWrap.style.width = gl.svgWidth + 'px';
+ gl.dom.elWrap.style.height = gl.svgHeight + 'px';
+ }
+ }, {
+ key: "shiftGraphPosition",
+ value: function shiftGraphPosition() {
+ var gl = this.w.globals;
+ var tY = gl.translateY;
+ var tX = gl.translateX;
+ var scalingAttrs = {
+ transform: 'translate(' + tX + ', ' + tY + ')'
+ };
+ Graphics.setAttrs(gl.dom.elGraphical.node, scalingAttrs);
+ } // To prevent extra spacings in the bottom of the chart, we need to recalculate the height for pie/donut/radialbar charts
+
+ }, {
+ key: "resizeNonAxisCharts",
+ value: function resizeNonAxisCharts() {
+ var w = this.w;
+ var gl = w.globals;
+ var legendHeight = 0;
+ var offY = w.config.chart.sparkline.enabled ? 1 : 15;
+ offY = offY + w.config.grid.padding.bottom;
+
+ if ((w.config.legend.position === 'top' || w.config.legend.position === 'bottom') && w.config.legend.show && !w.config.legend.floating) {
+ legendHeight = new Legend(this.ctx).legendHelpers.getLegendBBox().clwh + 10;
+ }
+
+ var el = w.globals.dom.baseEl.querySelector('.apexcharts-radialbar, .apexcharts-pie');
+ var chartInnerDimensions = w.globals.radialSize * 2.05;
+
+ if (el && !w.config.chart.sparkline.enabled && w.config.plotOptions.radialBar.startAngle !== 0) {
+ var elRadialRect = Utils$1.getBoundingClientRect(el);
+ chartInnerDimensions = elRadialRect.bottom;
+ var maxHeight = elRadialRect.bottom - elRadialRect.top;
+ chartInnerDimensions = Math.max(w.globals.radialSize * 2.05, maxHeight);
+ }
+
+ var newHeight = chartInnerDimensions + gl.translateY + legendHeight + offY;
+
+ if (gl.dom.elLegendForeign) {
+ gl.dom.elLegendForeign.setAttribute('height', newHeight);
+ } // fix apexcharts/apexcharts.js/issues/3105 (when % is provided in height, it keeps increasing)
+
+
+ if (w.config.chart.height && String(w.config.chart.height).indexOf('%') > 0) return;
+ gl.dom.elWrap.style.height = newHeight + 'px';
+ Graphics.setAttrs(gl.dom.Paper.node, {
+ height: newHeight
+ });
+ gl.dom.Paper.node.parentNode.parentNode.style.minHeight = newHeight + 'px';
+ }
+ /*
+ ** All the calculations for setting range in charts will be done here
+ */
+
+ }, {
+ key: "coreCalculations",
+ value: function coreCalculations() {
+ var range = new Range(this.ctx);
+ range.init();
+ }
+ }, {
+ key: "resetGlobals",
+ value: function resetGlobals() {
+ var _this = this;
+
+ var resetxyValues = function resetxyValues() {
+ return _this.w.config.series.map(function (s) {
+ return [];
+ });
+ };
+
+ var globalObj = new Globals();
+ var gl = this.w.globals;
+ globalObj.initGlobalVars(gl);
+ gl.seriesXvalues = resetxyValues();
+ gl.seriesYvalues = resetxyValues();
+ }
+ }, {
+ key: "isMultipleY",
+ value: function isMultipleY() {
+ // user has supplied an array in yaxis property. So, turn on multipleYAxis flag
+ if (this.w.config.yaxis.constructor === Array && this.w.config.yaxis.length > 1) {
+ this.w.globals.isMultipleYAxis = true;
+ return true;
+ }
+ }
+ }, {
+ key: "xySettings",
+ value: function xySettings() {
+ var xyRatios = null;
+ var w = this.w;
+
+ if (w.globals.axisCharts) {
+ if (w.config.xaxis.crosshairs.position === 'back') {
+ var crosshairs = new Crosshairs(this.ctx);
+ crosshairs.drawXCrosshairs();
+ }
+
+ if (w.config.yaxis[0].crosshairs.position === 'back') {
+ var _crosshairs = new Crosshairs(this.ctx);
+
+ _crosshairs.drawYCrosshairs();
+ }
+
+ if (w.config.xaxis.type === 'datetime' && w.config.xaxis.labels.formatter === undefined) {
+ this.ctx.timeScale = new TimeScale(this.ctx);
+ var formattedTimeScale = [];
+
+ if (isFinite(w.globals.minX) && isFinite(w.globals.maxX) && !w.globals.isBarHorizontal) {
+ formattedTimeScale = this.ctx.timeScale.calculateTimeScaleTicks(w.globals.minX, w.globals.maxX);
+ } else if (w.globals.isBarHorizontal) {
+ formattedTimeScale = this.ctx.timeScale.calculateTimeScaleTicks(w.globals.minY, w.globals.maxY);
+ }
+
+ this.ctx.timeScale.recalcDimensionsBasedOnFormat(formattedTimeScale);
+ }
+
+ var coreUtils = new CoreUtils(this.ctx);
+ xyRatios = coreUtils.getCalculatedRatios();
+ }
+
+ return xyRatios;
+ }
+ }, {
+ key: "updateSourceChart",
+ value: function updateSourceChart(targetChart) {
+ this.ctx.w.globals.selection = undefined;
+
+ this.ctx.updateHelpers._updateOptions({
+ chart: {
+ selection: {
+ xaxis: {
+ min: targetChart.w.globals.minX,
+ max: targetChart.w.globals.maxX
+ }
+ }
+ }
+ }, false, false);
+ }
+ }, {
+ key: "setupBrushHandler",
+ value: function setupBrushHandler() {
+ var _this2 = this;
+
+ var w = this.w; // only for brush charts
+
+ if (!w.config.chart.brush.enabled) {
+ return;
+ } // if user has not defined a custom function for selection - we handle the brush chart
+ // otherwise we leave it to the user to define the functionality for selection
+
+
+ if (typeof w.config.chart.events.selection !== 'function') {
+ var targets = Array.isArray(w.config.chart.brush.targets) ? w.config.chart.brush.targets : [w.config.chart.brush.target]; // retro compatibility with single target option
+
+ targets.forEach(function (target) {
+ var targetChart = ApexCharts.getChartByID(target);
+ targetChart.w.globals.brushSource = _this2.ctx;
+
+ if (typeof targetChart.w.config.chart.events.zoomed !== 'function') {
+ targetChart.w.config.chart.events.zoomed = function () {
+ _this2.updateSourceChart(targetChart);
+ };
+ }
+
+ if (typeof targetChart.w.config.chart.events.scrolled !== 'function') {
+ targetChart.w.config.chart.events.scrolled = function () {
+ _this2.updateSourceChart(targetChart);
+ };
+ }
+ });
+
+ w.config.chart.events.selection = function (chart, e) {
+ targets.forEach(function (target) {
+ var targetChart = ApexCharts.getChartByID(target);
+
+ targetChart.ctx.updateHelpers._updateOptions({
+ xaxis: {
+ min: e.xaxis.min,
+ max: e.xaxis.max
+ }
+ }, false, false, false, false);
+ });
+ };
+ }
+ }
+ }]);
+
+ return Core;
+ }();
+
+ var UpdateHelpers = /*#__PURE__*/function () {
+ function UpdateHelpers(ctx) {
+ _classCallCheck(this, UpdateHelpers);
+
+ this.ctx = ctx;
+ this.w = ctx.w;
+ }
+ /**
+ * private method to update Options.
+ *
+ * @param {object} options - A new config object can be passed which will be merged with the existing config object
+ * @param {boolean} redraw - should redraw from beginning or should use existing paths and redraw from there
+ * @param {boolean} animate - should animate or not on updating Options
+ * @param {boolean} overwriteInitialConfig - should update the initial config or not
+ */
+
+
+ _createClass(UpdateHelpers, [{
+ key: "_updateOptions",
+ value: function _updateOptions(options) {
+ var _this = this;
+
+ var redraw = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
+ var animate = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
+ var updateSyncedCharts = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
+ var overwriteInitialConfig = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
+ return new Promise(function (resolve) {
+ var charts = [_this.ctx];
+
+ if (updateSyncedCharts) {
+ charts = _this.ctx.getSyncedCharts();
+ }
+
+ if (_this.ctx.w.globals.isExecCalled) {
+ // If the user called exec method, we don't want to get grouped charts as user specifically provided a chartID to update
+ charts = [_this.ctx];
+ _this.ctx.w.globals.isExecCalled = false;
+ }
+
+ charts.forEach(function (ch, chartIndex) {
+ var w = ch.w;
+ w.globals.shouldAnimate = animate;
+
+ if (!redraw) {
+ w.globals.resized = true;
+ w.globals.dataChanged = true;
+
+ if (animate) {
+ ch.series.getPreviousPaths();
+ }
+ }
+
+ if (options && _typeof(options) === 'object') {
+ ch.config = new Config(options);
+ options = CoreUtils.extendArrayProps(ch.config, options, w); // fixes #914, #623
+
+ if (ch.w.globals.chartID !== _this.ctx.w.globals.chartID) {
+ // don't overwrite series of synchronized charts
+ delete options.series;
+ }
+
+ w.config = Utils$1.extend(w.config, options);
+
+ if (overwriteInitialConfig) {
+ // we need to forget the lastXAxis and lastYAxis as user forcefully overwriteInitialConfig. If we do not do this, and next time when user zooms the chart after setting yaxis.min/max or xaxis.min/max - the stored lastXAxis will never allow the chart to use the updated min/max by user.
+ w.globals.lastXAxis = options.xaxis ? Utils$1.clone(options.xaxis) : [];
+ w.globals.lastYAxis = options.yaxis ? Utils$1.clone(options.yaxis) : []; // After forgetting lastAxes, we need to restore the new config in initialConfig/initialSeries
+
+ w.globals.initialConfig = Utils$1.extend({}, w.config);
+ w.globals.initialSeries = Utils$1.clone(w.config.series);
+
+ if (options.series) {
+ // Replace the collapsed series data
+ for (var i = 0; i < w.globals.collapsedSeriesIndices.length; i++) {
+ var series = w.config.series[w.globals.collapsedSeriesIndices[i]];
+ w.globals.collapsedSeries[i].data = w.globals.axisCharts ? series.data.slice() : series;
+ }
+
+ for (var _i = 0; _i < w.globals.ancillaryCollapsedSeriesIndices.length; _i++) {
+ var _series = w.config.series[w.globals.ancillaryCollapsedSeriesIndices[_i]];
+ w.globals.ancillaryCollapsedSeries[_i].data = w.globals.axisCharts ? _series.data.slice() : _series;
+ } // Ensure that auto-generated axes are scaled to the visible data
+
+
+ ch.series.emptyCollapsedSeries(w.config.series);
+ }
+ }
+ }
+
+ return ch.update(options).then(function () {
+ if (chartIndex === charts.length - 1) {
+ resolve(ch);
+ }
+ });
+ });
+ });
+ }
+ /**
+ * Private method to update Series.
+ *
+ * @param {array} series - New series which will override the existing
+ */
+
+ }, {
+ key: "_updateSeries",
+ value: function _updateSeries(newSeries, animate) {
+ var _this2 = this;
+
+ var overwriteInitialSeries = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
+ return new Promise(function (resolve) {
+ var w = _this2.w;
+ w.globals.shouldAnimate = animate;
+ w.globals.dataChanged = true;
+
+ if (animate) {
+ _this2.ctx.series.getPreviousPaths();
+ }
+
+ var existingSeries; // axis charts
+
+ if (w.globals.axisCharts) {
+ existingSeries = newSeries.map(function (s, i) {
+ return _this2._extendSeries(s, i);
+ });
+
+ if (existingSeries.length === 0) {
+ existingSeries = [{
+ data: []
+ }];
+ }
+
+ w.config.series = existingSeries;
+ } else {
+ // non-axis chart (pie/radialbar)
+ w.config.series = newSeries.slice();
+ }
+
+ if (overwriteInitialSeries) {
+ w.globals.initialConfig.series = Utils$1.clone(w.config.series);
+ w.globals.initialSeries = Utils$1.clone(w.config.series);
+ }
+
+ return _this2.ctx.update().then(function () {
+ resolve(_this2.ctx);
+ });
+ });
+ }
+ }, {
+ key: "_extendSeries",
+ value: function _extendSeries(s, i) {
+ var w = this.w;
+ var ser = w.config.series[i];
+ return _objectSpread2(_objectSpread2({}, w.config.series[i]), {}, {
+ name: s.name ? s.name : ser === null || ser === void 0 ? void 0 : ser.name,
+ color: s.color ? s.color : ser === null || ser === void 0 ? void 0 : ser.color,
+ type: s.type ? s.type : ser === null || ser === void 0 ? void 0 : ser.type,
+ group: s.group ? s.group : ser === null || ser === void 0 ? void 0 : ser.group,
+ data: s.data ? s.data : ser === null || ser === void 0 ? void 0 : ser.data,
+ zIndex: typeof s.zIndex !== 'undefined' ? s.zIndex : i
+ });
+ }
+ }, {
+ key: "toggleDataPointSelection",
+ value: function toggleDataPointSelection(seriesIndex, dataPointIndex) {
+ var w = this.w;
+ var elPath = null;
+ var parent = ".apexcharts-series[data\\:realIndex='".concat(seriesIndex, "']");
+
+ if (w.globals.axisCharts) {
+ elPath = w.globals.dom.Paper.select("".concat(parent, " path[j='").concat(dataPointIndex, "'], ").concat(parent, " circle[j='").concat(dataPointIndex, "'], ").concat(parent, " rect[j='").concat(dataPointIndex, "']")).members[0];
+ } else {
+ // dataPointIndex will be undefined here, hence using seriesIndex
+ if (typeof dataPointIndex === 'undefined') {
+ elPath = w.globals.dom.Paper.select("".concat(parent, " path[j='").concat(seriesIndex, "']")).members[0];
+
+ if (w.config.chart.type === 'pie' || w.config.chart.type === 'polarArea' || w.config.chart.type === 'donut') {
+ this.ctx.pie.pieClicked(seriesIndex);
+ }
+ }
+ }
+
+ if (elPath) {
+ var graphics = new Graphics(this.ctx);
+ graphics.pathMouseDown(elPath, null);
+ } else {
+ console.warn('toggleDataPointSelection: Element not found');
+ return null;
+ }
+
+ return elPath.node ? elPath.node : null;
+ }
+ }, {
+ key: "forceXAxisUpdate",
+ value: function forceXAxisUpdate(options) {
+ var w = this.w;
+ var minmax = ['min', 'max'];
+ minmax.forEach(function (a) {
+ if (typeof options.xaxis[a] !== 'undefined') {
+ w.config.xaxis[a] = options.xaxis[a];
+ w.globals.lastXAxis[a] = options.xaxis[a];
+ }
+ });
+
+ if (options.xaxis.categories && options.xaxis.categories.length) {
+ w.config.xaxis.categories = options.xaxis.categories;
+ }
+
+ if (w.config.xaxis.convertedCatToNumeric) {
+ var defaults = new Defaults(options);
+ options = defaults.convertCatToNumericXaxis(options, this.ctx);
+ }
+
+ return options;
+ }
+ }, {
+ key: "forceYAxisUpdate",
+ value: function forceYAxisUpdate(options) {
+ if (options.chart && options.chart.stacked && options.chart.stackType === '100%') {
+ if (Array.isArray(options.yaxis)) {
+ options.yaxis.forEach(function (yaxe, index) {
+ options.yaxis[index].min = 0;
+ options.yaxis[index].max = 100;
+ });
+ } else {
+ options.yaxis.min = 0;
+ options.yaxis.max = 100;
+ }
+ }
+
+ return options;
+ }
+ /**
+ * This function reverts the yaxis and xaxis min/max values to what it was when the chart was defined.
+ * This function fixes an important bug where a user might load a new series after zooming in/out of previous series which resulted in wrong min/max
+ * Also, this should never be called internally on zoom/pan - the reset should only happen when user calls the updateSeries() function externally
+ * The function also accepts an object {xaxis, yaxis} which when present is set as the new xaxis/yaxis
+ */
+
+ }, {
+ key: "revertDefaultAxisMinMax",
+ value: function revertDefaultAxisMinMax(opts) {
+ var _this3 = this;
+
+ var w = this.w;
+ var xaxis = w.globals.lastXAxis;
+ var yaxis = w.globals.lastYAxis;
+
+ if (opts && opts.xaxis) {
+ xaxis = opts.xaxis;
+ }
+
+ if (opts && opts.yaxis) {
+ yaxis = opts.yaxis;
+ }
+
+ w.config.xaxis.min = xaxis.min;
+ w.config.xaxis.max = xaxis.max;
+
+ var getLastYAxis = function getLastYAxis(index) {
+ if (typeof yaxis[index] !== 'undefined') {
+ w.config.yaxis[index].min = yaxis[index].min;
+ w.config.yaxis[index].max = yaxis[index].max;
+ }
+ };
+
+ w.config.yaxis.map(function (yaxe, index) {
+ if (w.globals.zoomed) {
+ // user has zoomed, check the last yaxis
+ getLastYAxis(index);
+ } else {
+ // user hasn't zoomed, check the last yaxis first
+ if (typeof yaxis[index] !== 'undefined') {
+ getLastYAxis(index);
+ } else {
+ // if last y-axis don't exist, check the original yaxis
+ if (typeof _this3.ctx.opts.yaxis[index] !== 'undefined') {
+ yaxe.min = _this3.ctx.opts.yaxis[index].min;
+ yaxe.max = _this3.ctx.opts.yaxis[index].max;
+ }
+ }
+ }
+ });
+ }
+ }]);
+
+ return UpdateHelpers;
+ }();
+
+ (function (root, factory) {
+ /* istanbul ignore next */
+ if (typeof define === 'function' && define.amd) {
+ define(function () {
+ return factory(root, root.document);
+ });
+ /* below check fixes #412 */
+ } else if ((typeof exports === "undefined" ? "undefined" : _typeof(exports)) === 'object' && typeof module !== 'undefined') {
+ module.exports = root.document ? factory(root, root.document) : function (w) {
+ return factory(w, w.document);
+ };
+ } else {
+ root.SVG = factory(root, root.document);
+ }
+ })(typeof window !== 'undefined' ? window : undefined, function (window, document) {
+ // Find global reference - uses 'this' by default when available,
+ // falls back to 'window' otherwise (for bundlers like Webpack)
+ var globalRef = typeof this !== 'undefined' ? this : window; // The main wrapping element
+
+ var SVG = globalRef.SVG = function (element) {
+ if (SVG.supported) {
+ element = new SVG.Doc(element);
+
+ if (!SVG.parser.draw) {
+ SVG.prepare();
+ }
+
+ return element;
+ }
+ }; // Default namespaces
+
+
+ SVG.ns = 'http://www.w3.org/2000/svg';
+ SVG.xmlns = 'http://www.w3.org/2000/xmlns/';
+ SVG.xlink = 'http://www.w3.org/1999/xlink';
+ SVG.svgjs = 'http://svgjs.dev'; // Svg support test
+
+ SVG.supported = function () {
+ return true; // !!document.createElementNS &&
+ // !! document.createElementNS(SVG.ns,'svg').createSVGRect
+ }(); // Don't bother to continue if SVG is not supported
+
+
+ if (!SVG.supported) return false; // Element id sequence
+
+ SVG.did = 1000; // Get next named element id
+
+ SVG.eid = function (name) {
+ return 'Svgjs' + capitalize(name) + SVG.did++;
+ }; // Method for element creation
+
+
+ SVG.create = function (name) {
+ // create element
+ var element = document.createElementNS(this.ns, name); // apply unique id
+
+ element.setAttribute('id', this.eid(name));
+ return element;
+ }; // Method for extending objects
+
+
+ SVG.extend = function () {
+ var modules, methods; // Get list of modules
+
+ modules = [].slice.call(arguments); // Get object with extensions
+
+ methods = modules.pop();
+
+ for (var i = modules.length - 1; i >= 0; i--) {
+ if (modules[i]) {
+ for (var key in methods) {
+ modules[i].prototype[key] = methods[key];
+ }
+ }
+ } // Make sure SVG.Set inherits any newly added methods
+
+
+ if (SVG.Set && SVG.Set.inherit) {
+ SVG.Set.inherit();
+ }
+ }; // Invent new element
+
+
+ SVG.invent = function (config) {
+ // Create element initializer
+ var initializer = typeof config.create === 'function' ? config.create : function () {
+ this.constructor.call(this, SVG.create(config.create));
+ }; // Inherit prototype
+
+ if (config.inherit) {
+ initializer.prototype = new config.inherit();
+ } // Extend with methods
+
+
+ if (config.extend) {
+ SVG.extend(initializer, config.extend);
+ } // Attach construct method to parent
+
+
+ if (config.construct) {
+ SVG.extend(config.parent || SVG.Container, config.construct);
+ }
+
+ return initializer;
+ }; // Adopt existing svg elements
+
+
+ SVG.adopt = function (node) {
+ // check for presence of node
+ if (!node) return null; // make sure a node isn't already adopted
+
+ if (node.instance) return node.instance; // initialize variables
+
+ var element; // adopt with element-specific settings
+
+ if (node.nodeName == 'svg') {
+ element = node.parentNode instanceof window.SVGElement ? new SVG.Nested() : new SVG.Doc();
+ } else if (node.nodeName == 'linearGradient') {
+ element = new SVG.Gradient('linear');
+ } else if (node.nodeName == 'radialGradient') {
+ element = new SVG.Gradient('radial');
+ } else if (SVG[capitalize(node.nodeName)]) {
+ element = new SVG[capitalize(node.nodeName)]();
+ } else {
+ element = new SVG.Element(node);
+ } // ensure references
+
+
+ element.type = node.nodeName;
+ element.node = node;
+ node.instance = element; // SVG.Class specific preparations
+
+ if (element instanceof SVG.Doc) {
+ element.namespace().defs();
+ } // pull svgjs data from the dom (getAttributeNS doesn't work in html5)
+
+
+ element.setData(JSON.parse(node.getAttribute('svgjs:data')) || {});
+ return element;
+ }; // Initialize parsing element
+
+
+ SVG.prepare = function () {
+ // Select document body and create invisible svg element
+ var body = document.getElementsByTagName('body')[0],
+ draw = (body ? new SVG.Doc(body) : SVG.adopt(document.documentElement).nested()).size(2, 0); // Create parser object
+
+ SVG.parser = {
+ body: body || document.documentElement,
+ draw: draw.style('opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden').node,
+ poly: draw.polyline().node,
+ path: draw.path().node,
+ native: SVG.create('svg')
+ };
+ };
+
+ SVG.parser = {
+ native: SVG.create('svg')
+ };
+ document.addEventListener('DOMContentLoaded', function () {
+ if (!SVG.parser.draw) {
+ SVG.prepare();
+ }
+ }, false); // Storage for regular expressions
+
+ SVG.regex = {
+ // Parse unit value
+ numberAndUnit: /^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,
+ // Parse hex value
+ hex: /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,
+ // Parse rgb value
+ rgb: /rgb\((\d+),(\d+),(\d+)\)/,
+ // Parse reference id
+ reference: /#([a-z0-9\-_]+)/i,
+ // splits a transformation chain
+ transforms: /\)\s*,?\s*/,
+ // Whitespace
+ whitespace: /\s/g,
+ // Test hex value
+ isHex: /^#[a-f0-9]{3,6}$/i,
+ // Test rgb value
+ isRgb: /^rgb\(/,
+ // Test css declaration
+ isCss: /[^:]+:[^;]+;?/,
+ // Test for blank string
+ isBlank: /^(\s+)?$/,
+ // Test for numeric string
+ isNumber: /^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,
+ // Test for percent value
+ isPercent: /^-?[\d\.]+%$/,
+ // Test for image url
+ isImage: /\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,
+ // split at whitespace and comma
+ delimiter: /[\s,]+/,
+ // The following regex are used to parse the d attribute of a path
+ // Matches all hyphens which are not after an exponent
+ hyphen: /([^e])\-/gi,
+ // Replaces and tests for all path letters
+ pathLetters: /[MLHVCSQTAZ]/gi,
+ // yes we need this one, too
+ isPathLetter: /[MLHVCSQTAZ]/i,
+ // matches 0.154.23.45
+ numbersWithDots: /((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,
+ // matches .
+ dots: /\./g
+ };
+ SVG.utils = {
+ // Map function
+ map: function map(array, block) {
+ var il = array.length,
+ result = [];
+
+ for (var i = 0; i < il; i++) {
+ result.push(block(array[i]));
+ }
+
+ return result;
+ },
+ // Filter function
+ filter: function filter(array, block) {
+ var il = array.length,
+ result = [];
+
+ for (var i = 0; i < il; i++) {
+ if (block(array[i])) {
+ result.push(array[i]);
+ }
+ }
+
+ return result;
+ },
+ filterSVGElements: function filterSVGElements(nodes) {
+ return this.filter(nodes, function (el) {
+ return el instanceof window.SVGElement;
+ });
+ }
+ };
+ SVG.defaults = {
+ // Default attribute values
+ attrs: {
+ // fill and stroke
+ 'fill-opacity': 1,
+ 'stroke-opacity': 1,
+ 'stroke-width': 0,
+ 'stroke-linejoin': 'miter',
+ 'stroke-linecap': 'butt',
+ fill: '#000000',
+ stroke: '#000000',
+ opacity: 1,
+ // position
+ x: 0,
+ y: 0,
+ cx: 0,
+ cy: 0,
+ // size
+ width: 0,
+ height: 0,
+ // radius
+ r: 0,
+ rx: 0,
+ ry: 0,
+ // gradient
+ offset: 0,
+ 'stop-opacity': 1,
+ 'stop-color': '#000000',
+ // text
+ 'font-size': 16,
+ 'font-family': 'Helvetica, Arial, sans-serif',
+ 'text-anchor': 'start'
+ }
+ }; // Module for color convertions
+
+ SVG.Color = function (color) {
+ var match; // initialize defaults
+
+ this.r = 0;
+ this.g = 0;
+ this.b = 0;
+ if (!color) return; // parse color
+
+ if (typeof color === 'string') {
+ if (SVG.regex.isRgb.test(color)) {
+ // get rgb values
+ match = SVG.regex.rgb.exec(color.replace(SVG.regex.whitespace, '')); // parse numeric values
+
+ this.r = parseInt(match[1]);
+ this.g = parseInt(match[2]);
+ this.b = parseInt(match[3]);
+ } else if (SVG.regex.isHex.test(color)) {
+ // get hex values
+ match = SVG.regex.hex.exec(fullHex(color)); // parse numeric values
+
+ this.r = parseInt(match[1], 16);
+ this.g = parseInt(match[2], 16);
+ this.b = parseInt(match[3], 16);
+ }
+ } else if (_typeof(color) === 'object') {
+ this.r = color.r;
+ this.g = color.g;
+ this.b = color.b;
+ }
+ };
+
+ SVG.extend(SVG.Color, {
+ // Default to hex conversion
+ toString: function toString() {
+ return this.toHex();
+ },
+ // Build hex value
+ toHex: function toHex() {
+ return '#' + compToHex(this.r) + compToHex(this.g) + compToHex(this.b);
+ },
+ // Build rgb value
+ toRgb: function toRgb() {
+ return 'rgb(' + [this.r, this.g, this.b].join() + ')';
+ },
+ // Calculate true brightness
+ brightness: function brightness() {
+ return this.r / 255 * 0.30 + this.g / 255 * 0.59 + this.b / 255 * 0.11;
+ },
+ // Make color morphable
+ morph: function morph(color) {
+ this.destination = new SVG.Color(color);
+ return this;
+ },
+ // Get morphed color at given position
+ at: function at(pos) {
+ // make sure a destination is defined
+ if (!this.destination) return this; // normalise pos
+
+ pos = pos < 0 ? 0 : pos > 1 ? 1 : pos; // generate morphed color
+
+ return new SVG.Color({
+ r: ~~(this.r + (this.destination.r - this.r) * pos),
+ g: ~~(this.g + (this.destination.g - this.g) * pos),
+ b: ~~(this.b + (this.destination.b - this.b) * pos)
+ });
+ }
+ }); // Testers
+ // Test if given value is a color string
+
+ SVG.Color.test = function (color) {
+ color += '';
+ return SVG.regex.isHex.test(color) || SVG.regex.isRgb.test(color);
+ }; // Test if given value is a rgb object
+
+
+ SVG.Color.isRgb = function (color) {
+ return color && typeof color.r === 'number' && typeof color.g === 'number' && typeof color.b === 'number';
+ }; // Test if given value is a color
+
+
+ SVG.Color.isColor = function (color) {
+ return SVG.Color.isRgb(color) || SVG.Color.test(color);
+ }; // Module for array conversion
+
+
+ SVG.Array = function (array, fallback) {
+ array = (array || []).valueOf(); // if array is empty and fallback is provided, use fallback
+
+ if (array.length == 0 && fallback) {
+ array = fallback.valueOf();
+ } // parse array
+
+
+ this.value = this.parse(array);
+ };
+
+ SVG.extend(SVG.Array, {
+ // Convert array to string
+ toString: function toString() {
+ return this.value.join(' ');
+ },
+ // Real value
+ valueOf: function valueOf() {
+ return this.value;
+ },
+ // Parse whitespace separated string
+ parse: function parse(array) {
+ array = array.valueOf(); // if already is an array, no need to parse it
+
+ if (Array.isArray(array)) return array;
+ return this.split(array);
+ }
+ }); // Poly points array
+
+ SVG.PointArray = function (array, fallback) {
+ SVG.Array.call(this, array, fallback || [[0, 0]]);
+ }; // Inherit from SVG.Array
+
+
+ SVG.PointArray.prototype = new SVG.Array();
+ SVG.PointArray.prototype.constructor = SVG.PointArray;
+ var pathHandlers = {
+ M: function M(c, p, p0) {
+ p.x = p0.x = c[0];
+ p.y = p0.y = c[1];
+ return ['M', p.x, p.y];
+ },
+ L: function L(c, p) {
+ p.x = c[0];
+ p.y = c[1];
+ return ['L', c[0], c[1]];
+ },
+ H: function H(c, p) {
+ p.x = c[0];
+ return ['H', c[0]];
+ },
+ V: function V(c, p) {
+ p.y = c[0];
+ return ['V', c[0]];
+ },
+ C: function C(c, p) {
+ p.x = c[4];
+ p.y = c[5];
+ return ['C', c[0], c[1], c[2], c[3], c[4], c[5]];
+ },
+ Q: function Q(c, p) {
+ p.x = c[2];
+ p.y = c[3];
+ return ['Q', c[0], c[1], c[2], c[3]];
+ },
+ S: function S(c, p) {
+ p.x = c[2];
+ p.y = c[3];
+ return ['S', c[0], c[1], c[2], c[3]];
+ },
+ Z: function Z(c, p, p0) {
+ p.x = p0.x;
+ p.y = p0.y;
+ return ['Z'];
+ }
+ };
+ var mlhvqtcsa = 'mlhvqtcsaz'.split('');
+
+ for (var i = 0, il = mlhvqtcsa.length; i < il; ++i) {
+ pathHandlers[mlhvqtcsa[i]] = function (i) {
+ return function (c, p, p0) {
+ if (i == 'H') c[0] = c[0] + p.x;else if (i == 'V') c[0] = c[0] + p.y;else if (i == 'A') {
+ c[5] = c[5] + p.x, c[6] = c[6] + p.y;
+ } else {
+ for (var j = 0, jl = c.length; j < jl; ++j) {
+ c[j] = c[j] + (j % 2 ? p.y : p.x);
+ }
+ }
+
+ if (pathHandlers && typeof pathHandlers[i] === 'function') {
+ // this check fixes jest unit tests
+ return pathHandlers[i](c, p, p0);
+ }
+ };
+ }(mlhvqtcsa[i].toUpperCase());
+ } // Path points array
+
+
+ SVG.PathArray = function (array, fallback) {
+ SVG.Array.call(this, array, fallback || [['M', 0, 0]]);
+ }; // Inherit from SVG.Array
+
+
+ SVG.PathArray.prototype = new SVG.Array();
+ SVG.PathArray.prototype.constructor = SVG.PathArray;
+ SVG.extend(SVG.PathArray, {
+ // Convert array to string
+ toString: function toString() {
+ return arrayToString(this.value);
+ },
+ // Move path string
+ move: function move(x, y) {
+ // get bounding box of current situation
+ var box = this.bbox(); // get relative offset
+
+ x -= box.x;
+ y -= box.y;
+ return this;
+ },
+ // Get morphed path array at given position
+ at: function at(pos) {
+ // make sure a destination is defined
+ if (!this.destination) return this;
+ var sourceArray = this.value,
+ destinationArray = this.destination.value,
+ array = [],
+ pathArray = new SVG.PathArray(),
+ il,
+ jl; // Animate has specified in the SVG spec
+ // See: https://www.w3.org/TR/SVG11/paths.html#PathElement
+
+ for (var i = 0, il = sourceArray.length; i < il; i++) {
+ array[i] = [sourceArray[i][0]];
+
+ for (var j = 1, jl = sourceArray[i].length; j < jl; j++) {
+ array[i][j] = sourceArray[i][j] + (destinationArray[i][j] - sourceArray[i][j]) * pos;
+ } // For the two flags of the elliptical arc command, the SVG spec say:
+ // Flags and booleans are interpolated as fractions between zero and one, with any non-zero value considered to be a value of one/true
+ // Elliptical arc command as an array followed by corresponding indexes:
+ // ['A', rx, ry, x-axis-rotation, large-arc-flag, sweep-flag, x, y]
+ // 0 1 2 3 4 5 6 7
+
+
+ if (array[i][0] === 'A') {
+ array[i][4] = +(array[i][4] != 0);
+ array[i][5] = +(array[i][5] != 0);
+ }
+ } // Directly modify the value of a path array, this is done this way for performance
+
+
+ pathArray.value = array;
+ return pathArray;
+ },
+ // Absolutize and parse path to array
+ parse: function parse(array) {
+ // if it's already a patharray, no need to parse it
+ if (array instanceof SVG.PathArray) return array.valueOf(); // prepare for parsing
+
+ var s,
+ arr,
+ paramCnt = {
+ 'M': 2,
+ 'L': 2,
+ 'H': 1,
+ 'V': 1,
+ 'C': 6,
+ 'S': 4,
+ 'Q': 4,
+ 'T': 2,
+ 'A': 7,
+ 'Z': 0
+ };
+
+ if (typeof array === 'string') {
+ array = array.replace(SVG.regex.numbersWithDots, pathRegReplace) // convert 45.123.123 to 45.123 .123
+ .replace(SVG.regex.pathLetters, ' $& ') // put some room between letters and numbers
+ .replace(SVG.regex.hyphen, '$1 -') // add space before hyphen
+ .trim() // trim
+ .split(SVG.regex.delimiter); // split into array
+ } else {
+ array = array.reduce(function (prev, curr) {
+ return [].concat.call(prev, curr);
+ }, []);
+ } // array now is an array containing all parts of a path e.g. ['M', '0', '0', 'L', '30', '30' ...]
+
+
+ var arr = [],
+ p = new SVG.Point(),
+ p0 = new SVG.Point(),
+ index = 0,
+ len = array.length;
+
+ do {
+ // Test if we have a path letter
+ if (SVG.regex.isPathLetter.test(array[index])) {
+ s = array[index];
+ ++index; // If last letter was a move command and we got no new, it defaults to [L]ine
+ } else if (s == 'M') {
+ s = 'L';
+ } else if (s == 'm') {
+ s = 'l';
+ }
+
+ arr.push(pathHandlers[s].call(null, array.slice(index, index = index + paramCnt[s.toUpperCase()]).map(parseFloat), p, p0));
+ } while (len > index);
+
+ return arr;
+ },
+ // Get bounding box of path
+ bbox: function bbox() {
+ if (!SVG.parser.draw) {
+ SVG.prepare();
+ }
+
+ SVG.parser.path.setAttribute('d', this.toString());
+ return SVG.parser.path.getBBox();
+ }
+ }); // Module for unit convertions
+
+ SVG.Number = SVG.invent({
+ // Initialize
+ create: function create(value, unit) {
+ // initialize defaults
+ this.value = 0;
+ this.unit = unit || ''; // parse value
+
+ if (typeof value === 'number') {
+ // ensure a valid numeric value
+ this.value = isNaN(value) ? 0 : !isFinite(value) ? value < 0 ? -3.4e+38 : +3.4e+38 : value;
+ } else if (typeof value === 'string') {
+ unit = value.match(SVG.regex.numberAndUnit);
+
+ if (unit) {
+ // make value numeric
+ this.value = parseFloat(unit[1]); // normalize
+
+ if (unit[5] == '%') {
+ this.value /= 100;
+ } else if (unit[5] == 's') {
+ this.value *= 1000;
+ } // store unit
+
+
+ this.unit = unit[5];
+ }
+ } else {
+ if (value instanceof SVG.Number) {
+ this.value = value.valueOf();
+ this.unit = value.unit;
+ }
+ }
+ },
+ // Add methods
+ extend: {
+ // Stringalize
+ toString: function toString() {
+ return (this.unit == '%' ? ~~(this.value * 1e8) / 1e6 : this.unit == 's' ? this.value / 1e3 : this.value) + this.unit;
+ },
+ toJSON: function toJSON() {
+ return this.toString();
+ },
+ // Convert to primitive
+ valueOf: function valueOf() {
+ return this.value;
+ },
+ // Add number
+ plus: function plus(number) {
+ number = new SVG.Number(number);
+ return new SVG.Number(this + number, this.unit || number.unit);
+ },
+ // Subtract number
+ minus: function minus(number) {
+ number = new SVG.Number(number);
+ return new SVG.Number(this - number, this.unit || number.unit);
+ },
+ // Multiply number
+ times: function times(number) {
+ number = new SVG.Number(number);
+ return new SVG.Number(this * number, this.unit || number.unit);
+ },
+ // Divide number
+ divide: function divide(number) {
+ number = new SVG.Number(number);
+ return new SVG.Number(this / number, this.unit || number.unit);
+ },
+ // Convert to different unit
+ to: function to(unit) {
+ var number = new SVG.Number(this);
+
+ if (typeof unit === 'string') {
+ number.unit = unit;
+ }
+
+ return number;
+ },
+ // Make number morphable
+ morph: function morph(number) {
+ this.destination = new SVG.Number(number);
+
+ if (number.relative) {
+ this.destination.value += this.value;
+ }
+
+ return this;
+ },
+ // Get morphed number at given position
+ at: function at(pos) {
+ // Make sure a destination is defined
+ if (!this.destination) return this; // Generate new morphed number
+
+ return new SVG.Number(this.destination).minus(this).times(pos).plus(this);
+ }
+ }
+ });
+ SVG.Element = SVG.invent({
+ // Initialize node
+ create: function create(node) {
+ // make stroke value accessible dynamically
+ this._stroke = SVG.defaults.attrs.stroke;
+ this._event = null; // initialize data object
+
+ this.dom = {}; // create circular reference
+
+ if (this.node = node) {
+ this.type = node.nodeName;
+ this.node.instance = this; // store current attribute value
+
+ this._stroke = node.getAttribute('stroke') || this._stroke;
+ }
+ },
+ // Add class methods
+ extend: {
+ // Move over x-axis
+ x: function x(_x) {
+ return this.attr('x', _x);
+ },
+ // Move over y-axis
+ y: function y(_y) {
+ return this.attr('y', _y);
+ },
+ // Move by center over x-axis
+ cx: function cx(x) {
+ return x == null ? this.x() + this.width() / 2 : this.x(x - this.width() / 2);
+ },
+ // Move by center over y-axis
+ cy: function cy(y) {
+ return y == null ? this.y() + this.height() / 2 : this.y(y - this.height() / 2);
+ },
+ // Move element to given x and y values
+ move: function move(x, y) {
+ return this.x(x).y(y);
+ },
+ // Move element by its center
+ center: function center(x, y) {
+ return this.cx(x).cy(y);
+ },
+ // Set width of element
+ width: function width(_width) {
+ return this.attr('width', _width);
+ },
+ // Set height of element
+ height: function height(_height) {
+ return this.attr('height', _height);
+ },
+ // Set element size to given width and height
+ size: function size(width, height) {
+ var p = proportionalSize(this, width, height);
+ return this.width(new SVG.Number(p.width)).height(new SVG.Number(p.height));
+ },
+ // Clone element
+ clone: function clone(parent) {
+ // write dom data to the dom so the clone can pickup the data
+ this.writeDataToDom(); // clone element and assign new id
+
+ var clone = assignNewId(this.node.cloneNode(true)); // insert the clone in the given parent or after myself
+
+ if (parent) parent.add(clone);else this.after(clone);
+ return clone;
+ },
+ // Remove element
+ remove: function remove() {
+ if (this.parent()) {
+ this.parent().removeElement(this);
+ }
+
+ return this;
+ },
+ // Replace element
+ replace: function replace(element) {
+ this.after(element).remove();
+ return element;
+ },
+ // Add element to given container and return self
+ addTo: function addTo(parent) {
+ return parent.put(this);
+ },
+ // Add element to given container and return container
+ putIn: function putIn(parent) {
+ return parent.add(this);
+ },
+ // Get / set id
+ id: function id(_id) {
+ return this.attr('id', _id);
+ },
+ // Show element
+ show: function show() {
+ return this.style('display', '');
+ },
+ // Hide element
+ hide: function hide() {
+ return this.style('display', 'none');
+ },
+ // Is element visible?
+ visible: function visible() {
+ return this.style('display') != 'none';
+ },
+ // Return id on string conversion
+ toString: function toString() {
+ return this.attr('id');
+ },
+ // Return array of classes on the node
+ classes: function classes() {
+ var attr = this.attr('class');
+ return attr == null ? [] : attr.trim().split(SVG.regex.delimiter);
+ },
+ // Return true if class exists on the node, false otherwise
+ hasClass: function hasClass(name) {
+ return this.classes().indexOf(name) != -1;
+ },
+ // Add class to the node
+ addClass: function addClass(name) {
+ if (!this.hasClass(name)) {
+ var array = this.classes();
+ array.push(name);
+ this.attr('class', array.join(' '));
+ }
+
+ return this;
+ },
+ // Remove class from the node
+ removeClass: function removeClass(name) {
+ if (this.hasClass(name)) {
+ this.attr('class', this.classes().filter(function (c) {
+ return c != name;
+ }).join(' '));
+ }
+
+ return this;
+ },
+ // Toggle the presence of a class on the node
+ toggleClass: function toggleClass(name) {
+ return this.hasClass(name) ? this.removeClass(name) : this.addClass(name);
+ },
+ // Get referenced element form attribute value
+ reference: function reference(attr) {
+ return SVG.get(this.attr(attr));
+ },
+ // Returns the parent element instance
+ parent: function parent(type) {
+ var parent = this; // check for parent
+
+ if (!parent.node.parentNode) return null; // get parent element
+
+ parent = SVG.adopt(parent.node.parentNode);
+ if (!type) return parent; // loop trough ancestors if type is given
+
+ while (parent && parent.node instanceof window.SVGElement) {
+ if (typeof type === 'string' ? parent.matches(type) : parent instanceof type) return parent;
+ if (!parent.node.parentNode || parent.node.parentNode.nodeName == '#document') return null; // #759, #720
+
+ parent = SVG.adopt(parent.node.parentNode);
+ }
+ },
+ // Get parent document
+ doc: function doc() {
+ return this instanceof SVG.Doc ? this : this.parent(SVG.Doc);
+ },
+ // return array of all ancestors of given type up to the root svg
+ parents: function parents(type) {
+ var parents = [],
+ parent = this;
+
+ do {
+ parent = parent.parent(type);
+ if (!parent || !parent.node) break;
+ parents.push(parent);
+ } while (parent.parent);
+
+ return parents;
+ },
+ // matches the element vs a css selector
+ matches: function matches(selector) {
+ return _matches(this.node, selector);
+ },
+ // Returns the svg node to call native svg methods on it
+ native: function native() {
+ return this.node;
+ },
+ // Import raw svg
+ svg: function svg(_svg) {
+ // create temporary holder
+ var well = document.createElement('svg'); // act as a setter if svg is given
+
+ if (_svg && this instanceof SVG.Parent) {
+ // dump raw svg
+ well.innerHTML = ''; // transplant nodes
+
+ for (var i = 0, il = well.firstChild.childNodes.length; i < il; i++) {
+ this.node.appendChild(well.firstChild.firstChild);
+ } // otherwise act as a getter
+
+ } else {
+ // create a wrapping svg element in case of partial content
+ well.appendChild(_svg = document.createElement('svg')); // write svgjs data to the dom
+
+ this.writeDataToDom(); // insert a copy of this node
+
+ _svg.appendChild(this.node.cloneNode(true)); // return target element
+
+
+ return well.innerHTML.replace(/^\n'),o("zoomOut",this.elZoomOut,'\n');var n=function(i){t.t[i]&&e.config.chart[i].enabled&&r.push({el:"zoom"===i?t.elZoom:t.elSelection,icon:"string"==typeof t.t[i]?t.t[i]:"zoom"===i?'':'',title:t.localeValues["zoom"===i?"selectionZoom":"selection"],class:e.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-".concat(i,"-icon")})};n("zoom"),n("selection"),this.t.pan&&e.config.chart.zoom.enabled&&r.push({el:this.elPan,icon:"string"==typeof this.t.pan?this.t.pan:'',title:this.localeValues.pan,class:e.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-pan-icon"}),o("reset",this.elZoomReset,''),this.t.download&&r.push({el:this.elMenuIcon,icon:"string"==typeof this.t.download?this.t.download:'',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var l=0;l0&&e.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:t.globals.gridWidth,maxY:t.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var t=this.w,e=this.xyRatios;if(!t.globals.zoomEnabled)if(void 0!==t.globals.selection&&null!==t.globals.selection)this.drawSelectionRect(t.globals.selection);else if(void 0!==t.config.chart.selection.xaxis.min&&void 0!==t.config.chart.selection.xaxis.max){var i=(t.config.chart.selection.xaxis.min-t.globals.minX)/e.xRatio,a=t.globals.gridWidth-(t.globals.maxX-t.config.chart.selection.xaxis.max)/e.xRatio-i;t.globals.isRangeBar&&(i=(t.config.chart.selection.xaxis.min-t.globals.yAxisScale[0].niceMin)/e.invertedYRatio,a=(t.config.chart.selection.xaxis.max-t.config.chart.selection.xaxis.min)/e.invertedYRatio);var s={x:i,y:0,width:a,height:t.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(s),this.makeSelectionRectDraggable(),"function"==typeof t.config.chart.events.selection&&t.config.chart.events.selection(this.ctx,{xaxis:{min:t.config.chart.selection.xaxis.min,max:t.config.chart.selection.xaxis.max},yaxis:{}})}}},{key:"drawSelectionRect",value:function(t){var e=t.x,i=t.y,a=t.width,s=t.height,r=t.translateX,o=void 0===r?0:r,n=t.translateY,l=void 0===n?0:n,h=this.w,c=this.zoomRect,d=this.selectionRect;if(this.dragged||null!==h.globals.selection){var g={transform:"translate("+o+", "+l+")"};h.globals.zoomEnabled&&this.dragged&&(a<0&&(a=1),c.attr({x:e,y:i,width:a,height:s,fill:h.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":h.config.chart.zoom.zoomedArea.fill.opacity,stroke:h.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":h.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":h.config.chart.zoom.zoomedArea.stroke.opacity}),m.setAttrs(c.node,g)),h.globals.selectionEnabled&&(d.attr({x:e,y:i,width:a>0?a:0,height:s>0?s:0,fill:h.config.chart.selection.fill.color,"fill-opacity":h.config.chart.selection.fill.opacity,stroke:h.config.chart.selection.stroke.color,"stroke-width":h.config.chart.selection.stroke.width,"stroke-dasharray":h.config.chart.selection.stroke.dashArray,"stroke-opacity":h.config.chart.selection.stroke.opacity}),m.setAttrs(d.node,g))}}},{key:"hideSelectionRect",value:function(t){t&&t.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(t){var e=t.context,i=t.zoomtype,a=this.w,s=e,r=this.gridRect.getBoundingClientRect(),o=s.startX-1,n=s.startY,l=!1,h=!1,c=s.clientX-r.left-o,d=s.clientY-r.top-n,g={};return Math.abs(c+o)>a.globals.gridWidth?c=a.globals.gridWidth-o:s.clientX-r.left<0&&(c=o),o>s.clientX-r.left&&(l=!0,c=Math.abs(c)),n>s.clientY-r.top&&(h=!0,d=Math.abs(d)),g="x"===i?{x:l?o-c:o,y:0,width:c,height:a.globals.gridHeight}:"y"===i?{x:0,y:h?n-d:n,width:a.globals.gridWidth,height:d}:{x:l?o-c:o,y:h?n-d:n,width:c,height:d},s.drawSelectionRect(g),s.selectionDragging("resizing"),g}},{key:"selectionDragging",value:function(t,e){var i=this,a=this.w,s=this.xyRatios,r=this.selectionRect,o=0;"resizing"===t&&(o=30);var n=function(t){return parseFloat(r.node.getAttribute(t))},l={x:n("x"),y:n("y"),width:n("width"),height:n("height")};a.globals.selection=l,"function"==typeof a.config.chart.events.selection&&a.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout((function(){var t,e,o,n,l=i.gridRect.getBoundingClientRect(),h=r.node.getBoundingClientRect();a.globals.isRangeBar?(t=a.globals.yAxisScale[0].niceMin+(h.left-l.left)*s.invertedYRatio,e=a.globals.yAxisScale[0].niceMin+(h.right-l.left)*s.invertedYRatio,o=0,n=1):(t=a.globals.xAxisScale.niceMin+(h.left-l.left)*s.xRatio,e=a.globals.xAxisScale.niceMin+(h.right-l.left)*s.xRatio,o=a.globals.yAxisScale[0].niceMin+(l.bottom-h.bottom)*s.yRatio[0],n=a.globals.yAxisScale[0].niceMax-(h.top-l.top)*s.yRatio[0]);var c={xaxis:{min:t,max:e},yaxis:{min:o,max:n}};a.config.chart.events.selection(i.ctx,c),a.config.chart.brush.enabled&&void 0!==a.config.chart.events.brushScrolled&&a.config.chart.events.brushScrolled(i.ctx,c)}),o))}},{key:"selectionDrawn",value:function(t){var e=t.context,i=t.zoomtype,a=this.w,s=e,r=this.xyRatios,o=this.ctx.toolbar;if(s.startX>s.endX){var n=s.startX;s.startX=s.endX,s.endX=n}if(s.startY>s.endY){var l=s.startY;s.startY=s.endY,s.endY=l}var h=void 0,c=void 0;a.globals.isRangeBar?(h=a.globals.yAxisScale[0].niceMin+s.startX*r.invertedYRatio,c=a.globals.yAxisScale[0].niceMin+s.endX*r.invertedYRatio):(h=a.globals.xAxisScale.niceMin+s.startX*r.xRatio,c=a.globals.xAxisScale.niceMin+s.endX*r.xRatio);var d=[],g=[];if(a.config.yaxis.forEach((function(t,e){var i=a.globals.seriesYAxisMap[e][0];d.push(a.globals.yAxisScale[e].niceMax-r.yRatio[i]*s.startY),g.push(a.globals.yAxisScale[e].niceMax-r.yRatio[i]*s.endY)})),s.dragged&&(s.dragX>10||s.dragY>10)&&h!==c)if(a.globals.zoomEnabled){var u=x.clone(a.globals.initialConfig.yaxis),p=x.clone(a.globals.initialConfig.xaxis);if(a.globals.zoomed=!0,a.config.xaxis.convertedCatToNumeric&&(h=Math.floor(h),c=Math.floor(c),h<1&&(h=1,c=a.globals.dataPoints),c-h<2&&(c=h+1)),"xy"!==i&&"x"!==i||(p={min:h,max:c}),"xy"!==i&&"y"!==i||u.forEach((function(t,e){u[e].min=g[e],u[e].max=d[e]})),o){var f=o.getBeforeZoomRange(p,u);f&&(p=f.xaxis?f.xaxis:p,u=f.yaxis?f.yaxis:u)}var b={xaxis:p};a.config.chart.group||(b.yaxis=u),s.ctx.updateHelpers._updateOptions(b,!1,s.w.config.chart.animations.dynamicAnimation.enabled),"function"==typeof a.config.chart.events.zoomed&&o.zoomCallback(p,u)}else if(a.globals.selectionEnabled){var v,m=null;v={min:h,max:c},"xy"!==i&&"y"!==i||(m=x.clone(a.config.yaxis)).forEach((function(t,e){m[e].min=g[e],m[e].max=d[e]})),a.globals.selection=s.selection,"function"==typeof a.config.chart.events.selection&&a.config.chart.events.selection(s.ctx,{xaxis:v,yaxis:m})}}},{key:"panDragging",value:function(t){var e=t.context,i=this.w,a=e;if(void 0!==i.globals.lastClientPosition.x){var s=i.globals.lastClientPosition.x-a.clientX,r=i.globals.lastClientPosition.y-a.clientY;Math.abs(s)>Math.abs(r)&&s>0?this.moveDirection="left":Math.abs(s)>Math.abs(r)&&s<0?this.moveDirection="right":Math.abs(r)>Math.abs(s)&&r>0?this.moveDirection="up":Math.abs(r)>Math.abs(s)&&r<0&&(this.moveDirection="down")}i.globals.lastClientPosition={x:a.clientX,y:a.clientY};var o=i.globals.isRangeBar?i.globals.minY:i.globals.minX,n=i.globals.isRangeBar?i.globals.maxY:i.globals.maxX;i.config.xaxis.convertedCatToNumeric||a.panScrolled(o,n)}},{key:"delayedPanScrolled",value:function(){var t=this.w,e=t.globals.minX,i=t.globals.maxX,a=(t.globals.maxX-t.globals.minX)/2;"left"===this.moveDirection?(e=t.globals.minX+a,i=t.globals.maxX+a):"right"===this.moveDirection&&(e=t.globals.minX-a,i=t.globals.maxX-a),e=Math.floor(e),i=Math.floor(i),this.updateScrolledChart({xaxis:{min:e,max:i}},e,i)}},{key:"panScrolled",value:function(t,e){var i=this.w,a=this.xyRatios,s=x.clone(i.globals.initialConfig.yaxis),r=a.xRatio,o=i.globals.minX,n=i.globals.maxX;i.globals.isRangeBar&&(r=a.invertedYRatio,o=i.globals.minY,n=i.globals.maxY),"left"===this.moveDirection?(t=o+i.globals.gridWidth/15*r,e=n+i.globals.gridWidth/15*r):"right"===this.moveDirection&&(t=o-i.globals.gridWidth/15*r,e=n-i.globals.gridWidth/15*r),i.globals.isRangeBar||(ti.globals.initialMaxX)&&(t=o,e=n);var l={xaxis:{min:t,max:e}};i.config.chart.group||(l.yaxis=s),this.updateScrolledChart(l,t,e)}},{key:"updateScrolledChart",value:function(t,e,i){var a=this.w;this.ctx.updateHelpers._updateOptions(t,!1,!1),"function"==typeof a.config.chart.events.scrolled&&a.config.chart.events.scrolled(this.ctx,{xaxis:{min:e,max:i}})}}]),i}(ht),dt=function(){function t(e){a(this,t),this.w=e.w,this.ttCtx=e,this.ctx=e.ctx}return r(t,[{key:"getNearestValues",value:function(t){var e=t.hoverArea,i=t.elGrid,a=t.clientX,s=t.clientY,r=this.w,o=i.getBoundingClientRect(),n=o.width,l=o.height,h=n/(r.globals.dataPoints-1),c=l/r.globals.dataPoints,d=this.hasBars();!r.globals.comboCharts&&!d||r.config.xaxis.convertedCatToNumeric||(h=n/r.globals.dataPoints);var g=a-o.left-r.globals.barPadForNumericAxis,u=s-o.top;g<0||u<0||g>n||u>l?(e.classList.remove("hovering-zoom"),e.classList.remove("hovering-pan")):r.globals.zoomEnabled?(e.classList.remove("hovering-pan"),e.classList.add("hovering-zoom")):r.globals.panEnabled&&(e.classList.remove("hovering-zoom"),e.classList.add("hovering-pan"));var p=Math.round(g/h),f=Math.floor(u/c);d&&!r.config.xaxis.convertedCatToNumeric&&(p=Math.ceil(g/h),p-=1);var b=null,v=null,m=r.globals.seriesXvalues.map((function(t){return t.filter((function(t){return x.isNumber(t)}))})),y=r.globals.seriesYvalues.map((function(t){return t.filter((function(t){return x.isNumber(t)}))}));if(r.globals.isXNumeric){var w=this.ttCtx.getElGrid().getBoundingClientRect(),k=g*(w.width/n),A=u*(w.height/l);b=(v=this.closestInMultiArray(k,A,m,y)).index,p=v.j,null!==b&&(m=r.globals.seriesXvalues[b],p=(v=this.closestInArray(k,m)).index)}return r.globals.capturedSeriesIndex=null===b?-1:b,(!p||p<1)&&(p=0),r.globals.isBarHorizontal?r.globals.capturedDataPointIndex=f:r.globals.capturedDataPointIndex=p,{capturedSeries:b,j:r.globals.isBarHorizontal?f:p,hoverX:g,hoverY:u}}},{key:"closestInMultiArray",value:function(t,e,i,a){var s=this.w,r=0,o=null,n=-1;s.globals.series.length>1?r=this.getFirstActiveXArray(i):o=0;var l=i[r][0],h=Math.abs(t-l);if(i.forEach((function(e){e.forEach((function(e,i){var a=Math.abs(t-e);a<=h&&(h=a,n=i)}))})),-1!==n){var c=a[r][n],d=Math.abs(e-c);o=r,a.forEach((function(t,i){var a=Math.abs(e-t[n]);a<=d&&(d=a,o=i)}))}return{index:o,j:n}}},{key:"getFirstActiveXArray",value:function(t){for(var e=this.w,i=0,a=t.map((function(t,e){return t.length>0?e:-1})),s=0;s0)for(var a=0;a *")):this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap > *")}},{key:"getAllMarkers",value:function(){var t=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap");(t=u(t)).sort((function(t,e){var i=Number(t.getAttribute("data:realIndex")),a=Number(e.getAttribute("data:realIndex"));return ai?-1:0}));var e=[];return t.forEach((function(t){e.push(t.querySelector(".apexcharts-marker"))})),e}},{key:"hasMarkers",value:function(t){return this.getElMarkers(t).length>0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(t){var e=this.w,i=e.config.markers.hover.size;return void 0===i&&(i=e.globals.markers.size[t]+e.config.markers.hover.sizeOffset),i}},{key:"toggleAllTooltipSeriesGroups",value:function(t){var e=this.w,i=this.ttCtx;0===i.allTooltipSeriesGroups.length&&(i.allTooltipSeriesGroups=e.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var a=i.allTooltipSeriesGroups,s=0;s";d.forEach((function(i,a){t+=' ').concat(i.attrs.name,"
"),e+="".concat(i.val,"
")})),v.innerHTML=t+"",m.innerHTML=e+""};o?l.globals.seriesGoals[e][i]&&Array.isArray(l.globals.seriesGoals[e][i])?y():(v.innerHTML="",m.innerHTML=""):y()}else v.innerHTML="",m.innerHTML="";null!==p&&(a[e].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=l.config.tooltip.z.title,a[e].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=void 0!==p?p:"");if(o&&f[0]){if(l.config.tooltip.hideEmptySeries){var w=a[e].querySelector(".apexcharts-tooltip-marker"),k=a[e].querySelector(".apexcharts-tooltip-text");0==parseFloat(c)?(w.style.display="none",k.style.display="none"):(w.style.display="block",k.style.display="block")}null==c||l.globals.ancillaryCollapsedSeriesIndices.indexOf(e)>-1||l.globals.collapsedSeriesIndices.indexOf(e)>-1?f[0].parentNode.style.display="none":f[0].parentNode.style.display=l.config.tooltip.items.display}}},{key:"toggleActiveInactiveSeries",value:function(t){var e=this.w;if(t)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=e.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("apexcharts-active"),i.style.display=e.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(t){var e=t.i,i=t.j,a=this.w,s=this.ctx.series.filteredSeriesX(),r="",o="",n=null,l=null,h={series:a.globals.series,seriesIndex:e,dataPointIndex:i,w:a},c=a.globals.ttZFormatter;null===i?l=a.globals.series[e]:a.globals.isXNumeric&&"treemap"!==a.config.chart.type?(r=s[e][i],0===s[e].length&&(r=s[this.tooltipUtil.getFirstActiveXArray(s)][i])):r=void 0!==a.globals.labels[i]?a.globals.labels[i]:"";var d=r;a.globals.isXNumeric&&"datetime"===a.config.xaxis.type?r=new S(this.ctx).xLabelFormat(a.globals.ttKeyFormatter,d,d,{i:void 0,dateFormatter:new A(this.ctx).formatDate,w:this.w}):r=a.globals.isBarHorizontal?a.globals.yLabelFormatters[0](d,h):a.globals.xLabelFormatter(d,h);return void 0!==a.config.tooltip.x.formatter&&(r=a.globals.ttKeyFormatter(d,h)),a.globals.seriesZ.length>0&&a.globals.seriesZ[e].length>0&&(n=c(a.globals.seriesZ[e][i],a)),o="function"==typeof a.config.xaxis.tooltip.formatter?a.globals.xaxisTooltipFormatter(d,h):r,{val:Array.isArray(l)?l.join(" "):l,xVal:Array.isArray(r)?r.join(" "):r,xAxisTTVal:Array.isArray(o)?o.join(" "):o,zVal:n}}},{key:"handleCustomTooltip",value:function(t){var e=t.i,i=t.j,a=t.y1,s=t.y2,r=t.w,o=this.ttCtx.getElTooltip(),n=r.config.tooltip.custom;Array.isArray(n)&&n[e]&&(n=n[e]),o.innerHTML=n({ctx:this.ctx,series:r.globals.series,seriesIndex:e,dataPointIndex:i,y1:a,y2:s,w:r})}}]),t}(),ut=function(){function t(e){a(this,t),this.ttCtx=e,this.ctx=e.ctx,this.w=e.w}return r(t,[{key:"moveXCrosshairs",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.ttCtx,a=this.w,s=i.getElXCrosshairs(),r=t-i.xcrosshairsWidth/2,o=a.globals.labels.slice().length;if(null!==e&&(r=a.globals.gridWidth/o*e),null===s||a.globals.isBarHorizontal||(s.setAttribute("x",r),s.setAttribute("x1",r),s.setAttribute("x2",r),s.setAttribute("y2",a.globals.gridHeight),s.classList.add("apexcharts-active")),r<0&&(r=0),r>a.globals.gridWidth&&(r=a.globals.gridWidth),i.isXAxisTooltipEnabled){var n=r;"tickWidth"!==a.config.xaxis.crosshairs.width&&"barWidth"!==a.config.xaxis.crosshairs.width||(n=r+i.xcrosshairsWidth/2),this.moveXAxisTooltip(n)}}},{key:"moveYCrosshairs",value:function(t){var e=this.ttCtx;null!==e.ycrosshairs&&m.setAttrs(e.ycrosshairs,{y1:t,y2:t}),null!==e.ycrosshairsHidden&&m.setAttrs(e.ycrosshairsHidden,{y1:t,y2:t})}},{key:"moveXAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;if(null!==i.xaxisTooltip&&0!==i.xcrosshairsWidth){i.xaxisTooltip.classList.add("apexcharts-active");var a=i.xaxisOffY+e.config.xaxis.tooltip.offsetY+e.globals.translateY+1+e.config.xaxis.offsetY;if(t-=i.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(t)){t+=e.globals.translateX;var s;s=new m(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=s.width+"px",i.xaxisTooltip.style.left=t+"px",i.xaxisTooltip.style.top=a+"px"}}}},{key:"moveYAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;null===i.yaxisTTEls&&(i.yaxisTTEls=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var a=parseInt(i.ycrosshairsHidden.getAttribute("y1"),10),s=e.globals.translateY+a,r=i.yaxisTTEls[t].getBoundingClientRect().height,o=e.globals.translateYAxisX[t]-2;e.config.yaxis[t].opposite&&(o-=26),s-=r/2,-1===e.globals.ignoreYAxisIndexes.indexOf(t)?(i.yaxisTTEls[t].classList.add("apexcharts-active"),i.yaxisTTEls[t].style.top=s+"px",i.yaxisTTEls[t].style.left=o+e.config.yaxis[t].tooltip.offsetX+"px"):i.yaxisTTEls[t].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=this.ttCtx,r=s.getElTooltip(),o=s.tooltipRect,n=null!==i?parseFloat(i):1,l=parseFloat(t)+n+5,h=parseFloat(e)+n/2;if(l>a.globals.gridWidth/2&&(l=l-o.ttWidth-n-10),l>a.globals.gridWidth-o.ttWidth-10&&(l=a.globals.gridWidth-o.ttWidth),l<-20&&(l=-20),a.config.tooltip.followCursor){var c=s.getElGrid().getBoundingClientRect();(l=s.e.clientX-c.left)>a.globals.gridWidth/2&&(l-=s.tooltipRect.ttWidth),(h=s.e.clientY+a.globals.translateY-c.top)>a.globals.gridHeight/2&&(h-=s.tooltipRect.ttHeight)}else a.globals.isBarHorizontal||o.ttHeight/2+h>a.globals.gridHeight&&(h=a.globals.gridHeight-o.ttHeight+a.globals.translateY);isNaN(l)||(l+=a.globals.translateX,r.style.left=l+"px",r.style.top=h+"px")}},{key:"moveMarkers",value:function(t,e){var i=this.w,a=this.ttCtx;if(i.globals.markers.size[t]>0)for(var s=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(t,"'] .apexcharts-marker")),r=0;r0&&(h.setAttribute("r",n),h.setAttribute("cx",i),h.setAttribute("cy",a)),this.moveXCrosshairs(i),r.fixedTooltip||this.moveTooltip(i,a,n)}}},{key:"moveDynamicPointsOnHover",value:function(t){var e,i=this.ttCtx,a=i.w,s=0,r=0,o=a.globals.pointsArray;e=new W(this.ctx).getActiveConfigSeriesIndex("asc",["line","area","scatter","bubble"]);var n=i.tooltipUtil.getHoverMarkerSize(e);o[e]&&(s=o[e][t][0],r=o[e][t][1]);var l=i.tooltipUtil.getAllMarkers();if(null!==l)for(var h=0;h0?(l[h]&&l[h].setAttribute("r",n),l[h]&&l[h].setAttribute("cy",d)):l[h]&&l[h].setAttribute("r",0)}}this.moveXCrosshairs(s),i.fixedTooltip||this.moveTooltip(s,r||a.globals.gridHeight,n)}},{key:"moveStickyTooltipOverBars",value:function(t,e){var i=this.w,a=this.ttCtx,s=i.globals.columnSeries?i.globals.columnSeries.length:i.globals.series.length,r=s>=2&&s%2==0?Math.floor(s/2):Math.floor(s/2)+1;i.globals.isBarHorizontal&&(r=new W(this.ctx).getActiveConfigSeriesIndex("desc")+1);var o=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(r,"'] path[j='").concat(t,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(r,"'] path[j='").concat(t,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(r,"'] path[j='").concat(t,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(r,"'] path[j='").concat(t,"']"));o||"number"!=typeof e||(o=i.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[data\\:realIndex='".concat(e,"'] path[j='").concat(t,"'],\n .apexcharts-candlestick-series .apexcharts-series[data\\:realIndex='").concat(e,"'] path[j='").concat(t,"'],\n .apexcharts-boxPlot-series .apexcharts-series[data\\:realIndex='").concat(e,"'] path[j='").concat(t,"'],\n .apexcharts-rangebar-series .apexcharts-series[data\\:realIndex='").concat(e,"'] path[j='").concat(t,"']")));var n=o?parseFloat(o.getAttribute("cx")):0,l=o?parseFloat(o.getAttribute("cy")):0,h=o?parseFloat(o.getAttribute("barWidth")):0,c=a.getElGrid().getBoundingClientRect(),d=o&&(o.classList.contains("apexcharts-candlestick-area")||o.classList.contains("apexcharts-boxPlot-area"));i.globals.isXNumeric?(o&&!d&&(n-=s%2!=0?h/2:0),o&&d&&i.globals.comboCharts&&(n-=h/2)):i.globals.isBarHorizontal||(n=a.xAxisTicksPositions[t-1]+a.dataPointsDividedWidth/2,isNaN(n)&&(n=a.xAxisTicksPositions[t]-a.dataPointsDividedWidth/2)),i.globals.isBarHorizontal?l-=a.tooltipRect.ttHeight:i.config.tooltip.followCursor?l=a.e.clientY-c.top-a.tooltipRect.ttHeight/2:l+a.tooltipRect.ttHeight+15>i.globals.gridHeight&&(l=i.globals.gridHeight),i.globals.isBarHorizontal||this.moveXCrosshairs(n),a.fixedTooltip||this.moveTooltip(n,l||i.globals.gridHeight)}}]),t}(),pt=function(){function t(e){a(this,t),this.w=e.w,this.ttCtx=e,this.ctx=e.ctx,this.tooltipPosition=new ut(e)}return r(t,[{key:"drawDynamicPoints",value:function(){var t=this.w,e=new m(this.ctx),i=new D(this.ctx),a=t.globals.dom.baseEl.querySelectorAll(".apexcharts-series");a=u(a),t.config.chart.stacked&&a.sort((function(t,e){return parseFloat(t.getAttribute("data:realIndex"))-parseFloat(e.getAttribute("data:realIndex"))}));for(var s=0;s2&&void 0!==arguments[2]?arguments[2]:null,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,s=this.w;"bubble"!==s.config.chart.type&&this.newPointSize(t,e);var r=e.getAttribute("cx"),o=e.getAttribute("cy");if(null!==i&&null!==a&&(r=i,o=a),this.tooltipPosition.moveXCrosshairs(r),!this.fixedTooltip){if("radar"===s.config.chart.type){var n=this.ttCtx.getElGrid().getBoundingClientRect();r=this.ttCtx.e.clientX-n.left}this.tooltipPosition.moveTooltip(r,o,s.config.markers.hover.size)}}},{key:"enlargePoints",value:function(t){for(var e=this.w,i=this,a=this.ttCtx,s=t,r=e.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),o=e.config.markers.hover.size,n=0;n=0?t[e].setAttribute("r",i):t[e].setAttribute("r",0)}}}]),t}(),ft=function(){function t(e){a(this,t),this.w=e.w;var i=this.w;this.ttCtx=e,this.isVerticalGroupedRangeBar=!i.globals.isBarHorizontal&&"rangeBar"===i.config.chart.type&&i.config.plotOptions.bar.rangeBarGroupRows}return r(t,[{key:"getAttr",value:function(t,e){return parseFloat(t.target.getAttribute(e))}},{key:"handleHeatTreeTooltip",value:function(t){var e=t.e,i=t.opt,a=t.x,s=t.y,r=t.type,o=this.ttCtx,n=this.w;if(e.target.classList.contains("apexcharts-".concat(r,"-rect"))){var l=this.getAttr(e,"i"),h=this.getAttr(e,"j"),c=this.getAttr(e,"cx"),d=this.getAttr(e,"cy"),g=this.getAttr(e,"width"),u=this.getAttr(e,"height");if(o.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:l,j:h,shared:!1,e:e}),n.globals.capturedSeriesIndex=l,n.globals.capturedDataPointIndex=h,a=c+o.tooltipRect.ttWidth/2+g,s=d+o.tooltipRect.ttHeight/2-u/2,o.tooltipPosition.moveXCrosshairs(c+g/2),a>n.globals.gridWidth/2&&(a=c-o.tooltipRect.ttWidth/2+g),o.w.config.tooltip.followCursor){var p=n.globals.dom.elWrap.getBoundingClientRect();a=n.globals.clientX-p.left-(a>n.globals.gridWidth/2?o.tooltipRect.ttWidth:0),s=n.globals.clientY-p.top-(s>n.globals.gridHeight/2?o.tooltipRect.ttHeight:0)}}return{x:a,y:s}}},{key:"handleMarkerTooltip",value:function(t){var e,i,a=t.e,s=t.opt,r=t.x,o=t.y,n=this.w,l=this.ttCtx;if(a.target.classList.contains("apexcharts-marker")){var h=parseInt(s.paths.getAttribute("cx"),10),c=parseInt(s.paths.getAttribute("cy"),10),d=parseFloat(s.paths.getAttribute("val"));if(i=parseInt(s.paths.getAttribute("rel"),10),e=parseInt(s.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,l.intersect){var g=x.findAncestor(s.paths,"apexcharts-series");g&&(e=parseInt(g.getAttribute("data:realIndex"),10))}if(l.tooltipLabels.drawSeriesTexts({ttItems:s.ttItems,i:e,j:i,shared:!l.showOnIntersect&&n.config.tooltip.shared,e:a}),"mouseup"===a.type&&l.markerClick(a,e,i),n.globals.capturedSeriesIndex=e,n.globals.capturedDataPointIndex=i,r=h,o=c+n.globals.translateY-1.4*l.tooltipRect.ttHeight,l.w.config.tooltip.followCursor){var u=l.getElGrid().getBoundingClientRect();o=l.e.clientY+n.globals.translateY-u.top}d<0&&(o=c),l.marker.enlargeCurrentPoint(i,s.paths,r,o)}return{x:r,y:o}}},{key:"handleBarTooltip",value:function(t){var e,i,a=t.e,s=t.opt,r=this.w,o=this.ttCtx,n=o.getElTooltip(),l=0,h=0,c=0,d=this.getBarTooltipXY({e:a,opt:s});e=d.i;var g=d.barHeight,u=d.j;r.globals.capturedSeriesIndex=e,r.globals.capturedDataPointIndex=u,r.globals.isBarHorizontal&&o.tooltipUtil.hasBars()||!r.config.tooltip.shared?(h=d.x,c=d.y,i=Array.isArray(r.config.stroke.width)?r.config.stroke.width[e]:r.config.stroke.width,l=h):r.globals.comboCharts||r.config.tooltip.shared||(l/=2),isNaN(c)&&(c=r.globals.svgHeight-o.tooltipRect.ttHeight);var p=parseInt(s.paths.parentNode.getAttribute("data:realIndex"),10),f=r.globals.isMultipleYAxis?r.config.yaxis[p]&&r.config.yaxis[p].reversed:r.config.yaxis[0].reversed;if(h+o.tooltipRect.ttWidth>r.globals.gridWidth&&!f?h-=o.tooltipRect.ttWidth:h<0&&(h=0),o.w.config.tooltip.followCursor){var x=o.getElGrid().getBoundingClientRect();c=o.e.clientY-x.top}null===o.tooltip&&(o.tooltip=r.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),r.config.tooltip.shared||(r.globals.comboBarCount>0?o.tooltipPosition.moveXCrosshairs(l+i/2):o.tooltipPosition.moveXCrosshairs(l)),!o.fixedTooltip&&(!r.config.tooltip.shared||r.globals.isBarHorizontal&&o.tooltipUtil.hasBars())&&(f&&(h-=o.tooltipRect.ttWidth)<0&&(h=0),!f||r.globals.isBarHorizontal&&o.tooltipUtil.hasBars()||(c=c+g-2*(r.globals.series[e][u]<0?g:0)),c=c+r.globals.translateY-o.tooltipRect.ttHeight/2,n.style.left=h+r.globals.translateX+"px",n.style.top=c+"px")}},{key:"getBarTooltipXY",value:function(t){var e=this,i=t.e,a=t.opt,s=this.w,r=null,o=this.ttCtx,n=0,l=0,h=0,c=0,d=0,g=i.target.classList;if(g.contains("apexcharts-bar-area")||g.contains("apexcharts-candlestick-area")||g.contains("apexcharts-boxPlot-area")||g.contains("apexcharts-rangebar-area")){var u=i.target,p=u.getBoundingClientRect(),f=a.elGrid.getBoundingClientRect(),x=p.height;d=p.height;var b=p.width,v=parseInt(u.getAttribute("cx"),10),m=parseInt(u.getAttribute("cy"),10);c=parseFloat(u.getAttribute("barWidth"));var y="touchmove"===i.type?i.touches[0].clientX:i.clientX;r=parseInt(u.getAttribute("j"),10),n=parseInt(u.parentNode.getAttribute("rel"),10)-1;var w=u.getAttribute("data-range-y1"),k=u.getAttribute("data-range-y2");s.globals.comboCharts&&(n=parseInt(u.parentNode.getAttribute("data:realIndex"),10));var A=function(t){return s.globals.isXNumeric?v-b/2:e.isVerticalGroupedRangeBar?v+b/2:v-o.dataPointsDividedWidth+b/2},S=function(){return m-o.dataPointsDividedHeight+x/2-o.tooltipRect.ttHeight/2};o.tooltipLabels.drawSeriesTexts({ttItems:a.ttItems,i:n,j:r,y1:w?parseInt(w,10):null,y2:k?parseInt(k,10):null,shared:!o.showOnIntersect&&s.config.tooltip.shared,e:i}),s.config.tooltip.followCursor?s.globals.isBarHorizontal?(l=y-f.left+15,h=S()):(l=A(),h=i.clientY-f.top-o.tooltipRect.ttHeight/2-15):s.globals.isBarHorizontal?((l=v)0&&i.setAttribute("width",e.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var t=this.w,e=this.ttCtx;e.ycrosshairs=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),e.ycrosshairsHidden=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(t,e,i){var a=this.ttCtx,s=this.w,r=s.globals.yLabelFormatters[t];if(a.yaxisTooltips[t]){var o=a.getElGrid().getBoundingClientRect(),n=s.globals.seriesYAxisMap[anno.yAxisIndex][0],l=(e-o.top)*i.yRatio[n],h=s.globals.maxYArr[n]-s.globals.minYArr[n],c=s.globals.minYArr[n]+(h-l);a.tooltipPosition.moveYCrosshairs(e-o.top),a.yaxisTooltipText[t].innerHTML=r(c),a.tooltipPosition.moveYAxisTooltip(t)}}}]),t}(),bt=function(){function t(e){a(this,t),this.ctx=e,this.w=e.w;var i=this.w;this.tConfig=i.config.tooltip,this.tooltipUtil=new dt(this),this.tooltipLabels=new gt(this),this.tooltipPosition=new ut(this),this.marker=new pt(this),this.intersect=new ft(this),this.axesTooltip=new xt(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!i.globals.isBarHorizontal&&this.tConfig.shared,this.lastHoverTime=Date.now()}return r(t,[{key:"getElTooltip",value:function(t){return t||(t=this),t.w.globals.dom.baseEl?t.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip"):null}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(t){var e=this.w;this.xyRatios=t,this.isXAxisTooltipEnabled=e.config.xaxis.tooltip.enabled&&e.globals.axisCharts,this.yaxisTooltips=e.config.yaxis.map((function(t,i){return!!(t.show&&t.tooltip.enabled&&e.globals.axisCharts)})),this.allTooltipSeriesGroups=[],e.globals.axisCharts||(this.showTooltipTitle=!1);var i=document.createElement("div");if(i.classList.add("apexcharts-tooltip"),e.config.tooltip.cssClass&&i.classList.add(e.config.tooltip.cssClass),i.classList.add("apexcharts-theme-".concat(this.tConfig.theme)),e.globals.dom.elWrap.appendChild(i),e.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var a=new V(this.ctx);this.xAxisTicksPositions=a.getXAxisTicksPositions()}if(!e.globals.comboCharts&&!this.tConfig.intersect&&"rangeBar"!==e.config.chart.type||this.tConfig.shared||(this.showOnIntersect=!0),0!==e.config.markers.size&&0!==e.globals.markers.largestSize||this.marker.drawDynamicPoints(this),e.globals.collapsedSeries.length!==e.globals.series.length){this.dataPointsDividedHeight=e.globals.gridHeight/e.globals.dataPoints,this.dataPointsDividedWidth=e.globals.gridWidth/e.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||e.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,i.appendChild(this.tooltipTitle));var s=e.globals.series.length;(e.globals.xyCharts||e.globals.comboCharts)&&this.tConfig.shared&&(s=this.showOnIntersect?1:e.globals.series.length),this.legendLabels=e.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(s),this.addSVGEvents()}}},{key:"createTTElements",value:function(t){for(var e=this,i=this.w,a=[],s=this.getElTooltip(),r=function(r){var o=document.createElement("div");o.classList.add("apexcharts-tooltip-series-group"),o.style.order=i.config.tooltip.inverseOrder?t-r:r+1,e.tConfig.shared&&e.tConfig.enabledOnSeries&&Array.isArray(e.tConfig.enabledOnSeries)&&e.tConfig.enabledOnSeries.indexOf(r)<0&&o.classList.add("apexcharts-tooltip-series-group-hidden");var n=document.createElement("span");n.classList.add("apexcharts-tooltip-marker"),n.style.backgroundColor=i.globals.colors[r],o.appendChild(n);var l=document.createElement("div");l.classList.add("apexcharts-tooltip-text"),l.style.fontFamily=e.tConfig.style.fontFamily||i.config.chart.fontFamily,l.style.fontSize=e.tConfig.style.fontSize,["y","goals","z"].forEach((function(t){var e=document.createElement("div");e.classList.add("apexcharts-tooltip-".concat(t,"-group"));var i=document.createElement("span");i.classList.add("apexcharts-tooltip-text-".concat(t,"-label")),e.appendChild(i);var a=document.createElement("span");a.classList.add("apexcharts-tooltip-text-".concat(t,"-value")),e.appendChild(a),l.appendChild(e)})),o.appendChild(l),s.appendChild(o),a.push(o)},o=0;o0&&this.addPathsEventListeners(u,c),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(c)}}},{key:"drawFixedTooltipRect",value:function(){var t=this.w,e=this.getElTooltip(),i=e.getBoundingClientRect(),a=i.width+10,s=i.height+10,r=this.tConfig.fixed.offsetX,o=this.tConfig.fixed.offsetY,n=this.tConfig.fixed.position.toLowerCase();return n.indexOf("right")>-1&&(r=r+t.globals.svgWidth-a+10),n.indexOf("bottom")>-1&&(o=o+t.globals.svgHeight-s-10),e.style.left=r+"px",e.style.top=o+"px",{x:r,y:o,ttWidth:a,ttHeight:s}}},{key:"addDatapointEventsListeners",value:function(t){var e=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(e,t)}},{key:"addPathsEventListeners",value:function(t,e){for(var i=this,a=function(a){var s={paths:t[a],tooltipEl:e.tooltipEl,tooltipY:e.tooltipY,tooltipX:e.tooltipX,elGrid:e.elGrid,hoverArea:e.hoverArea,ttItems:e.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map((function(e){return t[a].addEventListener(e,i.onSeriesHover.bind(i,s),{capture:!1,passive:!0})}))},s=0;s=100?this.seriesHover(t,e):(clearTimeout(this.seriesHoverTimeout),this.seriesHoverTimeout=setTimeout((function(){i.seriesHover(t,e)}),100-a))}},{key:"seriesHover",value:function(t,e){var i=this;this.lastHoverTime=Date.now();var a=[],s=this.w;s.config.chart.group&&(a=this.ctx.getGroupedCharts()),s.globals.axisCharts&&(s.globals.minX===-1/0&&s.globals.maxX===1/0||0===s.globals.dataPoints)||(a.length?a.forEach((function(a){var s=i.getElTooltip(a),r={paths:t.paths,tooltipEl:s,tooltipY:t.tooltipY,tooltipX:t.tooltipX,elGrid:t.elGrid,hoverArea:t.hoverArea,ttItems:a.w.globals.tooltip.ttItems};a.w.globals.minX===i.w.globals.minX&&a.w.globals.maxX===i.w.globals.maxX&&a.w.globals.tooltip.seriesHoverByContext({chartCtx:a,ttCtx:a.w.globals.tooltip,opt:r,e:e})})):this.seriesHoverByContext({chartCtx:this.ctx,ttCtx:this.w.globals.tooltip,opt:t,e:e}))}},{key:"seriesHoverByContext",value:function(t){var e=t.chartCtx,i=t.ttCtx,a=t.opt,s=t.e,r=e.w,o=this.getElTooltip();if(o){if(i.tooltipRect={x:0,y:0,ttWidth:o.getBoundingClientRect().width,ttHeight:o.getBoundingClientRect().height},i.e=s,i.tooltipUtil.hasBars()&&!r.globals.comboCharts&&!i.isBarShared)if(this.tConfig.onDatasetHover.highlightDataSeries)new W(e).toggleSeriesOnHover(s,s.target.parentNode);i.fixedTooltip&&i.drawFixedTooltipRect(),r.globals.axisCharts?i.axisChartsTooltips({e:s,opt:a,tooltipRect:i.tooltipRect}):i.nonAxisChartsTooltips({e:s,opt:a,tooltipRect:i.tooltipRect})}}},{key:"axisChartsTooltips",value:function(t){var e,i,a=t.e,s=t.opt,r=this.w,o=s.elGrid.getBoundingClientRect(),n="touchmove"===a.type?a.touches[0].clientX:a.clientX,l="touchmove"===a.type?a.touches[0].clientY:a.clientY;if(this.clientY=l,this.clientX=n,r.globals.capturedSeriesIndex=-1,r.globals.capturedDataPointIndex=-1,lo.top+o.height)this.handleMouseOut(s);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!r.config.tooltip.shared){var h=parseInt(s.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(h)<0)return void this.handleMouseOut(s)}var c=this.getElTooltip(),d=this.getElXCrosshairs(),g=r.globals.xyCharts||"bar"===r.config.chart.type&&!r.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||r.globals.comboCharts&&this.tooltipUtil.hasBars();if("mousemove"===a.type||"touchmove"===a.type||"mouseup"===a.type){if(r.globals.collapsedSeries.length+r.globals.ancillaryCollapsedSeries.length===r.globals.series.length)return;null!==d&&d.classList.add("apexcharts-active");var u=this.yaxisTooltips.filter((function(t){return!0===t}));if(null!==this.ycrosshairs&&u.length&&this.ycrosshairs.classList.add("apexcharts-active"),g&&!this.showOnIntersect)this.handleStickyTooltip(a,n,l,s);else if("heatmap"===r.config.chart.type||"treemap"===r.config.chart.type){var p=this.intersect.handleHeatTreeTooltip({e:a,opt:s,x:e,y:i,type:r.config.chart.type});e=p.x,i=p.y,c.style.left=e+"px",c.style.top=i+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:a,opt:s}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:a,opt:s,x:e,y:i});if(this.yaxisTooltips.length)for(var f=0;fl.width)this.handleMouseOut(a);else if(null!==n)this.handleStickyCapturedSeries(t,n,a,o);else if(this.tooltipUtil.isXoverlap(o)||s.globals.isBarHorizontal){var h=s.globals.series.findIndex((function(t,e){return!s.globals.collapsedSeriesIndices.includes(e)}));this.create(t,this,h,o,a.ttItems)}}},{key:"handleStickyCapturedSeries",value:function(t,e,i,a){var s=this.w;if(!this.tConfig.shared&&null===s.globals.series[e][a])return void this.handleMouseOut(i);if(void 0!==s.globals.series[e][a])this.tConfig.shared&&this.tooltipUtil.isXoverlap(a)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(t,this,e,a,i.ttItems):this.create(t,this,e,a,i.ttItems,!1);else if(this.tooltipUtil.isXoverlap(a)){var r=s.globals.series.findIndex((function(t,e){return!s.globals.collapsedSeriesIndices.includes(e)}));this.create(t,this,r,a,i.ttItems)}}},{key:"deactivateHoverFilter",value:function(){for(var t=this.w,e=new m(this.ctx),i=t.globals.dom.Paper.select(".apexcharts-bar-area"),a=0;a5&&void 0!==arguments[5]?arguments[5]:null,S=this.w,C=i;"mouseup"===t.type&&this.markerClick(t,a,s),null===A&&(A=this.tConfig.shared);var L=this.tooltipUtil.hasMarkers(a),P=this.tooltipUtil.getElBars();if(S.config.legend.tooltipHoverFormatter){var M=S.config.legend.tooltipHoverFormatter,I=Array.from(this.legendLabels);I.forEach((function(t){var e=t.getAttribute("data:default-text");t.innerHTML=decodeURIComponent(e)}));for(var T=0;T0?C.marker.enlargePoints(s):C.tooltipPosition.moveDynamicPointsOnHover(s);else if(this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(P),this.barSeriesHeight>0)){var R=new m(this.ctx),H=S.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(s,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(s,a);for(var D=0;D0&&a.config.plotOptions.bar.hideZeroBarsWhenGrouped&&(u-=c*A)),k){u=u+g.height/2-v/2-2}var C=this.barCtx.series[s][r]<0,L=l;switch(this.barCtx.isReversed&&(L=l-d+(C?2*d:0),l-=d),x.position){case"center":p=k?C?L-d/2+w:L+d/2-w:C?L-d/2+g.height/2+w:L+d/2+g.height/2-w;break;case"bottom":p=k?C?L-d+w:L+d-w:C?L-d+g.height+v+w:L+d-g.height/2+v-w;break;case"top":p=k?C?L+w:L-w:C?L-g.height/2-w:L+g.height+w}if(this.barCtx.lastActiveBarSerieIndex===o&&b.enabled){var P=new m(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:o,j:r}),f.fontSize);e=C?L-P.height/2-w-b.offsetY+18:L+P.height+w+b.offsetY-18,i=u+b.offsetX}return a.config.chart.stacked||(p<0?p=0+v:p+g.height/3>a.globals.gridHeight&&(p=a.globals.gridHeight-v)),{bcx:h,bcy:l,dataLabelsX:u,dataLabelsY:p,totalDataLabelsX:i,totalDataLabelsY:e,totalDataLabelsAnchor:"middle"}}},{key:"calculateBarsDataLabelsPosition",value:function(t){var e=this.w,i=t.x,a=t.i,s=t.j,r=t.realIndex,o=t.groupIndex,n=t.bcy,l=t.barHeight,h=t.barWidth,c=t.textRects,d=t.dataLabelsX,g=t.strokeWidth,u=t.dataLabelsConfig,p=t.barDataLabelsConfig,f=t.barTotalDataLabelsConfig,x=t.offX,b=t.offY,v=e.globals.gridHeight/e.globals.dataPoints;h=Math.abs(h);var y,w,k=(n+=-1!==o?o*l:0)-(this.barCtx.isRangeBar?0:v)+l/2+c.height/2+b-3,A="start",S=this.barCtx.series[a][s]<0,C=i;switch(this.barCtx.isReversed&&(C=i+h-(S?2*h:0),i=e.globals.gridWidth-h),p.position){case"center":d=S?C+h/2-x:Math.max(c.width/2,C-h/2)+x;break;case"bottom":d=S?C+h-g-Math.round(c.width/2)-x:C-h+g+Math.round(c.width/2)+x;break;case"top":d=S?C-g+Math.round(c.width/2)-x:C-g-Math.round(c.width/2)+x}if(this.barCtx.lastActiveBarSerieIndex===r&&f.enabled){var L=new m(this.barCtx.ctx).getTextRects(this.getStackedTotalDataLabel({realIndex:r,j:s}),u.fontSize);S?(y=C-g+Math.round(L.width/2)-x-f.offsetX-15,A="end"):y=C-g-Math.round(L.width/2)+x+f.offsetX+15,w=k+f.offsetY}return e.config.chart.stacked||(d<0?d=d+c.width+g:d+c.width/2>e.globals.gridWidth&&(d=e.globals.gridWidth-c.width-g)),{bcx:i,bcy:n,dataLabelsX:d,dataLabelsY:k,totalDataLabelsX:y,totalDataLabelsY:w,totalDataLabelsAnchor:A}}},{key:"drawCalculatedDataLabels",value:function(t){var i=t.x,a=t.y,s=t.val,r=t.i,o=t.j,n=t.textRects,l=t.barHeight,h=t.barWidth,c=t.dataLabelsConfig,d=this.w,g="rotate(0)";"vertical"===d.config.plotOptions.bar.dataLabels.orientation&&(g="rotate(-90, ".concat(i,", ").concat(a,")"));var u=new N(this.barCtx.ctx),p=new m(this.barCtx.ctx),f=c.formatter,x=null,b=d.globals.collapsedSeriesIndices.indexOf(r)>-1;if(c.enabled&&!b){x=p.group({class:"apexcharts-data-labels",transform:g});var v="";void 0!==s&&(v=f(s,e(e({},d),{},{seriesIndex:r,dataPointIndex:o,w:d}))),!s&&d.config.plotOptions.bar.hideZeroBarsWhenGrouped&&(v="");var y=d.globals.series[r][o]<0,w=d.config.plotOptions.bar.dataLabels.position;if("vertical"===d.config.plotOptions.bar.dataLabels.orientation&&("top"===w&&(c.textAnchor=y?"end":"start"),"center"===w&&(c.textAnchor="middle"),"bottom"===w&&(c.textAnchor=y?"end":"start")),this.barCtx.isRangeBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels)hMath.abs(h)&&(v=""):n.height/1.6>Math.abs(l)&&(v=""));var k=e({},c);this.barCtx.isHorizontal&&s<0&&("start"===c.textAnchor?k.textAnchor="end":"end"===c.textAnchor&&(k.textAnchor="start")),u.plotDataLabelsText({x:i,y:a,text:v,i:r,j:o,parent:x,dataLabelsConfig:k,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return x}},{key:"drawTotalDataLabels",value:function(t){var e,i=t.x,a=t.y,s=t.val,r=t.barWidth,o=t.barHeight,n=t.realIndex,l=t.textAnchor,h=t.barTotalDataLabelsConfig,c=this.w,d=new m(this.barCtx.ctx);return h.enabled&&void 0!==i&&void 0!==a&&this.barCtx.lastActiveBarSerieIndex===n&&(e=d.drawText({x:i-(!c.globals.isBarHorizontal&&c.globals.seriesGroups.length?r/c.globals.seriesGroups.length:0),y:a-(c.globals.isBarHorizontal&&c.globals.seriesGroups.length?o/c.globals.seriesGroups.length:0),foreColor:h.style.color,text:s,textAnchor:l,fontFamily:h.style.fontFamily,fontSize:h.style.fontSize,fontWeight:h.style.fontWeight})),e}}]),t}(),mt=function(){function t(e){a(this,t),this.w=e.w,this.barCtx=e}return r(t,[{key:"initVariables",value:function(t){var e=this.w;this.barCtx.series=t,this.barCtx.totalItems=0,this.barCtx.seriesLen=0,this.barCtx.visibleI=-1,this.barCtx.visibleItems=1;for(var i=0;i0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=t[i].length),e.globals.isXNumeric)for(var a=0;ae.globals.minX&&e.globals.seriesX[i][a]0&&(a=l.globals.minXDiff/d),(r=a/c*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(r=1)}-1===String(this.barCtx.barOptions.columnWidth).indexOf("%")&&(r=parseInt(this.barCtx.barOptions.columnWidth,10)),o=l.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.translationsIndex]-(this.barCtx.isReversed?l.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.translationsIndex]:0),t=l.globals.padHorizontal+(a-r*this.barCtx.seriesLen)/2}return l.globals.barHeight=s,l.globals.barWidth=r,{x:t,y:e,yDivision:i,xDivision:a,barHeight:s,barWidth:r,zeroH:o,zeroW:n}}},{key:"initializeStackedPrevVars",value:function(t){var e=t.w;e.globals.hasSeriesGroups?e.globals.seriesGroups.forEach((function(e){t[e]||(t[e]={}),t[e].prevY=[],t[e].prevX=[],t[e].prevYF=[],t[e].prevXF=[],t[e].prevYVal=[],t[e].prevXVal=[]})):(t.prevY=[],t.prevX=[],t.prevYF=[],t.prevXF=[],t.prevYVal=[],t.prevXVal=[])}},{key:"initializeStackedXYVars",value:function(t){var e=t.w;e.globals.hasSeriesGroups?e.globals.seriesGroups.forEach((function(e){t[e]||(t[e]={}),t[e].xArrj=[],t[e].xArrjF=[],t[e].xArrjVal=[],t[e].yArrj=[],t[e].yArrjF=[],t[e].yArrjVal=[]})):(t.xArrj=[],t.xArrjF=[],t.xArrjVal=[],t.yArrj=[],t.yArrjF=[],t.yArrjVal=[])}},{key:"getPathFillColor",value:function(t,e,i,a){var s,r,o,n,l=this.w,h=new H(this.barCtx.ctx),c=null,d=this.barCtx.barOptions.distributed?i:e;this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map((function(a){t[e][i]>=a.from&&t[e][i]<=a.to&&(c=a.color)}));return l.config.series[e].data[i]&&l.config.series[e].data[i].fillColor&&(c=l.config.series[e].data[i].fillColor),h.fillPath({seriesNumber:this.barCtx.barOptions.distributed?d:a,dataPointIndex:i,color:c,value:t[e][i],fillConfig:null===(s=l.config.series[e].data[i])||void 0===s?void 0:s.fill,fillType:null!==(r=l.config.series[e].data[i])&&void 0!==r&&null!==(o=r.fill)&&void 0!==o&&o.type?null===(n=l.config.series[e].data[i])||void 0===n?void 0:n.fill.type:Array.isArray(l.config.fill.type)?l.config.fill.type[e]:l.config.fill.type})}},{key:"getStrokeWidth",value:function(t,e,i){var a=0,s=this.w;return void 0===this.barCtx.series[t][e]||null===this.barCtx.series[t][e]?this.barCtx.isNullValue=!0:this.barCtx.isNullValue=!1,s.config.stroke.show&&(this.barCtx.isNullValue||(a=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[i]:this.barCtx.strokeWidth)),a}},{key:"shouldApplyRadius",value:function(t){var e=this.w,i=!1;return e.config.plotOptions.bar.borderRadius>0&&(e.config.chart.stacked&&"last"===e.config.plotOptions.bar.borderRadiusWhenStacked?this.barCtx.lastActiveBarSerieIndex===t&&(i=!0):i=!0),i}},{key:"barBackground",value:function(t){var e=t.j,i=t.i,a=t.x1,s=t.x2,r=t.y1,o=t.y2,n=t.elSeries,l=this.w,h=new m(this.barCtx.ctx),c=new W(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&c===i){e>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(e%=this.barCtx.barOptions.colors.backgroundBarColors.length);var d=this.barCtx.barOptions.colors.backgroundBarColors[e],g=h.drawRect(void 0!==a?a:0,void 0!==r?r:0,void 0!==s?s:l.globals.gridWidth,void 0!==o?o:l.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,d,this.barCtx.barOptions.colors.backgroundBarOpacity);n.add(g),g.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(t){var e,i=t.barWidth,a=t.barXPosition,s=t.y1,r=t.y2,o=t.strokeWidth,n=t.seriesGroup,l=t.realIndex,h=t.i,c=t.j,d=t.w,g=new m(this.barCtx.ctx);(o=Array.isArray(o)?o[l]:o)||(o=0);var u=i,p=a;null!==(e=d.config.series[l].data[c])&&void 0!==e&&e.columnWidthOffset&&(p=a-d.config.series[l].data[c].columnWidthOffset/2,u=i+d.config.series[l].data[c].columnWidthOffset);var f=p,x=p+u;s+=.001,r+=.001;var b=g.move(f,s),v=g.move(f,s),y=g.line(x-o,s);if(d.globals.previousPaths.length>0&&(v=this.barCtx.getPreviousPath(l,c,!1)),b=b+g.line(f,r)+g.line(x-o,r)+g.line(x-o,s)+("around"===d.config.plotOptions.bar.borderRadiusApplication?" Z":" z"),v=v+g.line(f,s)+y+y+y+y+y+g.line(f,s)+("around"===d.config.plotOptions.bar.borderRadiusApplication?" Z":" z"),this.shouldApplyRadius(l)&&(b=g.roundPathCorners(b,d.config.plotOptions.bar.borderRadius)),d.config.chart.stacked){var w=this.barCtx;d.globals.hasSeriesGroups&&n&&(w=this.barCtx[n]),w.yArrj.push(r),w.yArrjF.push(Math.abs(s-r)),w.yArrjVal.push(this.barCtx.series[h][c])}return{pathTo:b,pathFrom:v}}},{key:"getBarpaths",value:function(t){var e,i=t.barYPosition,a=t.barHeight,s=t.x1,r=t.x2,o=t.strokeWidth,n=t.seriesGroup,l=t.realIndex,h=t.i,c=t.j,d=t.w,g=new m(this.barCtx.ctx);(o=Array.isArray(o)?o[l]:o)||(o=0);var u=i,p=a;null!==(e=d.config.series[l].data[c])&&void 0!==e&&e.barHeightOffset&&(u=i-d.config.series[l].data[c].barHeightOffset/2,p=a+d.config.series[l].data[c].barHeightOffset);var f=u,x=u+p;s+=.001,r+=.001;var b=g.move(s,f),v=g.move(s,f);d.globals.previousPaths.length>0&&(v=this.barCtx.getPreviousPath(l,c,!1));var y=g.line(s,x-o);if(b=b+g.line(r,f)+g.line(r,x-o)+y+("around"===d.config.plotOptions.bar.borderRadiusApplication?" Z":" z"),v=v+g.line(s,f)+y+y+y+y+y+g.line(s,f)+("around"===d.config.plotOptions.bar.borderRadiusApplication?" Z":" z"),this.shouldApplyRadius(l)&&(b=g.roundPathCorners(b,d.config.plotOptions.bar.borderRadius)),d.config.chart.stacked){var w=this.barCtx;d.globals.hasSeriesGroups&&n&&(w=this.barCtx[n]),w.xArrj.push(r),w.xArrjF.push(Math.abs(s-r)),w.xArrjVal.push(this.barCtx.series[h][c])}return{pathTo:b,pathFrom:v}}},{key:"checkZeroSeries",value:function(t){for(var e=t.series,i=this.w,a=0;a2&&void 0!==arguments[2])||arguments[2]?e:null;return null!=t&&(i=e+t/this.barCtx.invertedYRatio-2*(this.barCtx.isReversed?t/this.barCtx.invertedYRatio:0)),i}},{key:"getYForValue",value:function(t,e,i){var a=!(arguments.length>3&&void 0!==arguments[3])||arguments[3]?e:null;return null!=t&&(a=e-t/this.barCtx.yRatio[i]+2*(this.barCtx.isReversed?t/this.barCtx.yRatio[i]:0)),a}},{key:"getGoalValues",value:function(t,i,a,s,r,n){var l=this,h=this.w,c=[],d=function(e,s){var r;c.push((o(r={},t,"x"===t?l.getXForValue(e,i,!1):l.getYForValue(e,a,n,!1)),o(r,"attrs",s),r))};if(h.globals.seriesGoals[s]&&h.globals.seriesGoals[s][r]&&Array.isArray(h.globals.seriesGoals[s][r])&&h.globals.seriesGoals[s][r].forEach((function(t){d(t.value,t)})),this.barCtx.barOptions.isDumbbell&&h.globals.seriesRange.length){var g=this.barCtx.barOptions.dumbbellColors?this.barCtx.barOptions.dumbbellColors:h.globals.colors,u={strokeHeight:"x"===t?0:h.globals.markers.size[s],strokeWidth:"x"===t?h.globals.markers.size[s]:0,strokeDashArray:0,strokeLineCap:"round",strokeColor:Array.isArray(g[s])?g[s][0]:g[s]};d(h.globals.seriesRangeStart[s][r],u),d(h.globals.seriesRangeEnd[s][r],e(e({},u),{},{strokeColor:Array.isArray(g[s])?g[s][1]:g[s]}))}return c}},{key:"drawGoalLine",value:function(t){var e=t.barXPosition,i=t.barYPosition,a=t.goalX,s=t.goalY,r=t.barWidth,o=t.barHeight,n=new m(this.barCtx.ctx),l=n.group({className:"apexcharts-bar-goals-groups"});l.node.classList.add("apexcharts-element-hidden"),this.barCtx.w.globals.delayedElements.push({el:l.node}),l.attr("clip-path","url(#gridRectMarkerMask".concat(this.barCtx.w.globals.cuid,")"));var h=null;return this.barCtx.isHorizontal?Array.isArray(a)&&a.forEach((function(t){if(t.x>=-1&&t.x<=n.w.globals.gridWidth+1){var e=void 0!==t.attrs.strokeHeight?t.attrs.strokeHeight:o/2,a=i+e+o/2;h=n.drawLine(t.x,a-2*e,t.x,a,t.attrs.strokeColor?t.attrs.strokeColor:void 0,t.attrs.strokeDashArray,t.attrs.strokeWidth?t.attrs.strokeWidth:2,t.attrs.strokeLineCap),l.add(h)}})):Array.isArray(s)&&s.forEach((function(t){if(t.y>=-1&&t.y<=n.w.globals.gridHeight+1){var i=void 0!==t.attrs.strokeWidth?t.attrs.strokeWidth:r/2,a=e+i+r/2;h=n.drawLine(a-2*i,t.y,a,t.y,t.attrs.strokeColor?t.attrs.strokeColor:void 0,t.attrs.strokeDashArray,t.attrs.strokeHeight?t.attrs.strokeHeight:2,t.attrs.strokeLineCap),l.add(h)}})),l}},{key:"drawBarShadow",value:function(t){var e=t.prevPaths,i=t.currPaths,a=t.color,s=this.w,r=e.x,o=e.x1,n=e.barYPosition,l=i.x,h=i.x1,c=i.barYPosition,d=n+i.barHeight,g=new m(this.barCtx.ctx),u=new x,p=g.move(o,d)+g.line(r,d)+g.line(l,c)+g.line(h,c)+g.line(o,d)+("around"===s.config.plotOptions.bar.borderRadiusApplication?" Z":" z");return g.drawPath({d:p,fill:u.shadeColor(.5,x.rgb2hex(a)),stroke:"none",strokeWidth:0,fillOpacity:1,classes:"apexcharts-bar-shadows"})}},{key:"getZeroValueEncounters",value:function(t){var e=t.i,i=t.j,a=this.w,s=0,r=0;return a.globals.seriesPercent.forEach((function(t,a){t[i]&&s++,athis.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering - ApexCharts");for(var n=0,l=0;n0&&(this.visibleI=this.visibleI+1);var k=0,A=0;this.yRatio.length>1&&(this.yaxisIndex=a.globals.seriesYAxisReverseMap[v],this.translationsIndex=v);var S=this.translationsIndex;this.isReversed=a.config.yaxis[this.yaxisIndex]&&a.config.yaxis[this.yaxisIndex].reversed;var C=this.barHelpers.initialPositions();p=C.y,k=C.barHeight,c=C.yDivision,g=C.zeroW,u=C.x,A=C.barWidth,h=C.xDivision,d=C.zeroH,this.horizontal||b.push(u+A/2);var L=s.group({class:"apexcharts-datalabels","data:realIndex":v});a.globals.delayedElements.push({el:L.node}),L.node.classList.add("apexcharts-element-hidden");var P=s.group({class:"apexcharts-bar-goals-markers"}),M=s.group({class:"apexcharts-bar-shadows"});a.globals.delayedElements.push({el:M.node}),M.node.classList.add("apexcharts-element-hidden");for(var I=0;I0){var Y=this.barHelpers.drawBarShadow({color:"string"==typeof E&&-1===(null==E?void 0:E.indexOf("url"))?E:x.hexToRgba(a.globals.colors[n]),prevPaths:this.pathArr[this.pathArr.length-1],currPaths:z});Y&&M.add(Y)}this.pathArr.push(z);var F=this.barHelpers.drawGoalLine({barXPosition:z.barXPosition,barYPosition:z.barYPosition,goalX:z.goalX,goalY:z.goalY,barHeight:k,barWidth:A});F&&P.add(F),p=z.y,u=z.x,I>0&&b.push(u+A/2),f.push(p),this.renderSeries({realIndex:v,pathFill:E,j:I,i:n,pathFrom:z.pathFrom,pathTo:z.pathTo,strokeWidth:T,elSeries:w,x:u,y:p,series:t,barHeight:z.barHeight?z.barHeight:k,barWidth:z.barWidth?z.barWidth:A,elDataLabelsWrap:L,elGoalsMarkers:P,elBarShadows:M,visibleSeries:this.visibleI,type:"bar"})}a.globals.seriesXvalues[v]=b,a.globals.seriesYvalues[v]=f,o.add(w)}return o}},{key:"renderSeries",value:function(t){var e=t.realIndex,i=t.pathFill,a=t.lineFill,s=t.j,r=t.i,o=t.groupIndex,n=t.pathFrom,l=t.pathTo,h=t.strokeWidth,c=t.elSeries,d=t.x,g=t.y,u=t.y1,p=t.y2,f=t.series,x=t.barHeight,b=t.barWidth,y=t.barXPosition,w=t.barYPosition,k=t.elDataLabelsWrap,A=t.elGoalsMarkers,S=t.elBarShadows,C=t.visibleSeries,L=t.type,P=this.w,M=new m(this.ctx);a||(a=this.barOptions.distributed?P.globals.stroke.colors[s]:P.globals.stroke.colors[e]),P.config.series[r].data[s]&&P.config.series[r].data[s].strokeColor&&(a=P.config.series[r].data[s].strokeColor),this.isNullValue&&(i="none");var I=s/P.config.chart.animations.animateGradually.delay*(P.config.chart.animations.speed/P.globals.dataPoints)/2.4,T=M.renderPaths({i:r,j:s,realIndex:e,pathFrom:n,pathTo:l,stroke:a,strokeWidth:h,strokeLineCap:P.config.stroke.lineCap,fill:i,animationDelay:I,initialSpeed:P.config.chart.animations.speed,dataChangeSpeed:P.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(L,"-area")});T.attr("clip-path","url(#gridRectMask".concat(P.globals.cuid,")"));var z=P.config.forecastDataPoints;z.count>0&&s>=P.globals.dataPoints-z.count&&(T.node.setAttribute("stroke-dasharray",z.dashArray),T.node.setAttribute("stroke-width",z.strokeWidth),T.node.setAttribute("fill-opacity",z.fillOpacity)),void 0!==u&&void 0!==p&&(T.attr("data-range-y1",u),T.attr("data-range-y2",p)),new v(this.ctx).setSelectionFilter(T,e,s),c.add(T);var X=new vt(this).handleBarDataLabels({x:d,y:g,y1:u,y2:p,i:r,j:s,series:f,realIndex:e,groupIndex:o,barHeight:x,barWidth:b,barXPosition:y,barYPosition:w,renderedPath:T,visibleSeries:C});return null!==X.dataLabels&&k.add(X.dataLabels),X.totalDataLabels&&k.add(X.totalDataLabels),c.add(k),A&&c.add(A),S&&c.add(S),c}},{key:"drawBarPaths",value:function(t){var e,i=t.indexes,a=t.barHeight,s=t.strokeWidth,r=t.zeroW,o=t.x,n=t.y,l=t.yDivision,h=t.elSeries,c=this.w,d=i.i,g=i.j;if(c.globals.isXNumeric)e=(n=(c.globals.seriesX[d][g]-c.globals.minX)/this.invertedXRatio-a)+a*this.visibleI;else if(c.config.plotOptions.bar.hideZeroBarsWhenGrouped){var u=0,p=0;c.globals.seriesPercent.forEach((function(t,e){t[g]&&u++,e0&&(a=this.seriesLen*a/u),e=n+a*this.visibleI,e-=a*p}else e=n+a*this.visibleI;this.isFunnel&&(r-=(this.barHelpers.getXForValue(this.series[d][g],r)-r)/2),o=this.barHelpers.getXForValue(this.series[d][g],r);var f=this.barHelpers.getBarpaths({barYPosition:e,barHeight:a,x1:r,x2:o,strokeWidth:s,series:this.series,realIndex:i.realIndex,i:d,j:g,w:c});return c.globals.isXNumeric||(n+=l),this.barHelpers.barBackground({j:g,i:d,y1:e-a*this.visibleI,y2:a*this.seriesLen,elSeries:h}),{pathTo:f.pathTo,pathFrom:f.pathFrom,x1:r,x:o,y:n,goalX:this.barHelpers.getGoalValues("x",r,null,d,g),barYPosition:e,barHeight:a}}},{key:"drawColumnPaths",value:function(t){var e,i=t.indexes,a=t.x,s=t.y,r=t.xDivision,o=t.barWidth,n=t.zeroH,l=t.strokeWidth,h=t.elSeries,c=this.w,d=i.realIndex,g=i.translationsIndex,u=i.i,p=i.j,f=i.bc;if(c.globals.isXNumeric){var x=this.getBarXForNumericXAxis({x:a,j:p,realIndex:d,barWidth:o});a=x.x,e=x.barXPosition}else if(c.config.plotOptions.bar.hideZeroBarsWhenGrouped){var b=this.barHelpers.getZeroValueEncounters({i:u,j:p}),v=b.nonZeroColumns,m=b.zeroEncounters;v>0&&(o=this.seriesLen*o/v),e=a+o*this.visibleI,e-=o*m}else e=a+o*this.visibleI;s=this.barHelpers.getYForValue(this.series[u][p],n,g);var y=this.barHelpers.getColumnPaths({barXPosition:e,barWidth:o,y1:n,y2:s,strokeWidth:l,series:this.series,realIndex:d,i:u,j:p,w:c});return c.globals.isXNumeric||(a+=r),this.barHelpers.barBackground({bc:f,j:p,i:u,x1:e-l/2-o*this.visibleI,x2:o*this.seriesLen+l/2,elSeries:h}),{pathTo:y.pathTo,pathFrom:y.pathFrom,x:a,y:s,goalY:this.barHelpers.getGoalValues("y",null,n,u,p,g),barXPosition:e,barWidth:o}}},{key:"getBarXForNumericXAxis",value:function(t){var e=t.x,i=t.barWidth,a=t.realIndex,s=t.j,r=this.w,o=a;return r.globals.seriesX[a].length||(o=r.globals.maxValsInArrayIndex),r.globals.seriesX[o][s]&&(e=(r.globals.seriesX[o][s]-r.globals.minX)/this.xRatio-i*this.seriesLen/2),{barXPosition:e+i*this.visibleI,x:e}}},{key:"getPreviousPath",value:function(t,e){for(var i,a=this.w,s=0;s0&&parseInt(r.realIndex,10)===parseInt(t,10)&&void 0!==a.globals.previousPaths[s].paths[e]&&(i=a.globals.previousPaths[s].paths[e].d)}return i}}]),t}(),wt=function(t){n(s,t);var i=d(s);function s(){return a(this,s),i.apply(this,arguments)}return r(s,[{key:"draw",value:function(t,i){var a=this,s=this.w;this.graphics=new m(this.ctx),this.bar=new yt(this.ctx,this.xyRatios);var r=new y(this.ctx,s);t=r.getLogSeries(t),this.yRatio=r.getLogYRatios(this.yRatio),this.barHelpers.initVariables(t),"100%"===s.config.chart.stackType&&(t=s.globals.seriesPercent.slice()),this.series=t,this.barHelpers.initializeStackedPrevVars(this);for(var o=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),n=0,l=0,h=function(r,h){var c=void 0,d=void 0,g=void 0,u=void 0,p=-1;a.groupCtx=a,s.globals.seriesGroups.forEach((function(t,e){t.indexOf(s.config.series[r].name)>-1&&(p=e)})),-1!==p&&(a.groupCtx=a[s.globals.seriesGroups[p]]);var f=[],b=[],v=s.globals.comboCharts?i[r]:r,m=0;a.yRatio.length>1&&(a.yaxisIndex=s.globals.seriesYAxisReverseMap[v][0],m=v),a.isReversed=s.config.yaxis[a.yaxisIndex]&&s.config.yaxis[a.yaxisIndex].reversed;var y=a.graphics.group({class:"apexcharts-series",seriesName:x.escapeString(s.globals.seriesNames[v]),rel:r+1,"data:realIndex":v});a.ctx.series.addCollapsedClassToSeries(y,v);var w=a.graphics.group({class:"apexcharts-datalabels","data:realIndex":v}),k=a.graphics.group({class:"apexcharts-bar-goals-markers"}),A=0,S=0,C=a.initialPositions(n,l,c,d,g,u,m);l=C.y,A=C.barHeight,d=C.yDivision,u=C.zeroW,n=C.x,S=C.barWidth,c=C.xDivision,g=C.zeroH,s.globals.barHeight=A,s.globals.barWidth=S,a.barHelpers.initializeStackedXYVars(a),1===a.groupCtx.prevY.length&&a.groupCtx.prevY[0].every((function(t){return isNaN(t)}))&&(a.groupCtx.prevY[0]=a.groupCtx.prevY[0].map((function(t){return g})),a.groupCtx.prevYF[0]=a.groupCtx.prevYF[0].map((function(t){return 0})));for(var L=0;L1?(i=d.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:c*parseInt(d.config.plotOptions.bar.columnWidth,10)/100,-1===String(d.config.plotOptions.bar.columnWidth).indexOf("%")&&(c=parseInt(d.config.plotOptions.bar.columnWidth,10)),s=d.globals.gridHeight-this.baseLineY[o]-(this.isReversed?d.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[o]:0),t=d.globals.padHorizontal+(i-c)/2),{x:t,y:e,yDivision:a,xDivision:i,barHeight:null!==(n=d.globals.seriesGroups)&&void 0!==n&&n.length?h/d.globals.seriesGroups.length:h,barWidth:null!==(l=d.globals.seriesGroups)&&void 0!==l&&l.length?c/d.globals.seriesGroups.length:c,zeroH:s,zeroW:r}}},{key:"drawStackedBarPaths",value:function(t){for(var e,i=t.indexes,a=t.barHeight,s=t.strokeWidth,r=t.zeroW,o=t.x,n=t.y,l=t.groupIndex,h=t.seriesGroup,c=t.yDivision,d=t.elSeries,g=this.w,u=n+(-1!==l?l*a:0),p=i.i,f=i.j,x=i.translationsIndex,b=0,v=0;v0){var y=r;this.groupCtx.prevXVal[m-1][f]<0?y=this.series[p][f]>=0?this.groupCtx.prevX[m-1][f]+b-2*(this.isReversed?b:0):this.groupCtx.prevX[m-1][f]:this.groupCtx.prevXVal[m-1][f]>=0&&(y=this.series[p][f]>=0?this.groupCtx.prevX[m-1][f]:this.groupCtx.prevX[m-1][f]-b+2*(this.isReversed?b:0)),e=y}else e=r;o=null===this.series[p][f]?e:e+this.series[p][f]/this.invertedYRatio-2*(this.isReversed?this.series[p][f]/this.invertedYRatio:0);var w=this.barHelpers.getBarpaths({barYPosition:u,barHeight:a,x1:e,x2:o,strokeWidth:s,series:this.series,realIndex:i.realIndex,seriesGroup:h,i:p,j:f,w:g});return this.barHelpers.barBackground({j:f,i:p,y1:u,y2:a,elSeries:d}),n+=c,{pathTo:w.pathTo,pathFrom:w.pathFrom,goalX:this.barHelpers.getGoalValues("x",r,null,p,f,x),barYPosition:u,x:o,y:n}}},{key:"drawStackedColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=t.y,s=t.xDivision,r=t.barWidth,o=t.zeroH,n=t.groupIndex,l=t.seriesGroup,h=t.elSeries,c=this.w,d=e.i,g=e.j,u=e.bc,p=e.translationsIndex;if(c.globals.isXNumeric){var f=c.globals.seriesX[d][g];f||(f=0),i=(f-c.globals.minX)/this.xRatio-r/2,c.globals.seriesGroups.length&&(i=(f-c.globals.minX)/this.xRatio-r/2*c.globals.seriesGroups.length)}for(var x,b=i+(-1!==n?n*r:0),v=0,m=0;m0&&!c.globals.isXNumeric||y>0&&c.globals.isXNumeric&&c.globals.seriesX[d-1][g]===c.globals.seriesX[d][g]){var w,k,A,S=Math.min(this.yRatio.length+1,d+1);if(void 0!==this.groupCtx.prevY[y-1]&&this.groupCtx.prevY[y-1].length)for(var C=1;C=0?A-v+2*(this.isReversed?v:0):A;break}if((null===(I=this.groupCtx.prevYVal[y-P])||void 0===I?void 0:I[g])>=0){k=this.series[d][g]>=0?A:A+v-2*(this.isReversed?v:0);break}}void 0===k&&(k=c.globals.gridHeight),x=null!==(w=this.groupCtx.prevYF[0])&&void 0!==w&&w.every((function(t){return 0===t}))&&this.groupCtx.prevYF.slice(1,y).every((function(t){return t.every((function(t){return isNaN(t)}))}))?o:k}else x=o;a=this.series[d][g]?x-this.series[d][g]/this.yRatio[p]+2*(this.isReversed?this.series[d][g]/this.yRatio[p]:0):x;var T=this.barHelpers.getColumnPaths({barXPosition:b,barWidth:r,y1:x,y2:a,yRatio:this.yRatio[p],strokeWidth:this.strokeWidth,series:this.series,seriesGroup:l,realIndex:e.realIndex,i:d,j:g,w:c});return this.barHelpers.barBackground({bc:u,j:g,i:d,x1:b,x2:r,elSeries:h}),i+=s,{pathTo:T.pathTo,pathFrom:T.pathFrom,goalY:this.barHelpers.getGoalValues("y",null,o,d,g),barXPosition:b,x:c.globals.isXNumeric?i-s:i,y:a}}}]),s}(yt),kt=function(t){n(s,t);var i=d(s);function s(){return a(this,s),i.apply(this,arguments)}return r(s,[{key:"draw",value:function(t,i,a){var s=this,r=this.w,o=new m(this.ctx),n=r.globals.comboCharts?i:r.config.chart.type,l=new H(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick,this.boxOptions=this.w.config.plotOptions.boxPlot,this.isHorizontal=r.config.plotOptions.bar.horizontal;var h=new y(this.ctx,r);t=h.getLogSeries(t),this.series=t,this.yRatio=h.getLogYRatios(this.yRatio),this.barHelpers.initVariables(t);for(var c=o.group({class:"apexcharts-".concat(n,"-series apexcharts-plot-series")}),d=function(i){s.isBoxPlot="boxPlot"===r.config.chart.type||"boxPlot"===r.config.series[i].type;var n,h,d,g,u=void 0,p=void 0,f=[],b=[],v=r.globals.comboCharts?a[i]:i,m=o.group({class:"apexcharts-series",seriesName:x.escapeString(r.globals.seriesNames[v]),rel:i+1,"data:realIndex":v});s.ctx.series.addCollapsedClassToSeries(m,v),t[i].length>0&&(s.visibleI=s.visibleI+1);var y,w,k=0;s.yRatio.length>1&&(s.yaxisIndex=r.globals.seriesYAxisReverseMap[v][0],k=v);var A=s.barHelpers.initialPositions();p=A.y,y=A.barHeight,h=A.yDivision,g=A.zeroW,u=A.x,w=A.barWidth,n=A.xDivision,d=A.zeroH,b.push(u+w/2);for(var S=o.group({class:"apexcharts-datalabels","data:realIndex":v}),C=function(a){var o=s.barHelpers.getStrokeWidth(i,a,v),c=null,x={indexes:{i:i,j:a,realIndex:v,translationsIndex:k},x:u,y:p,strokeWidth:o,elSeries:m};c=s.isHorizontal?s.drawHorizontalBoxPaths(e(e({},x),{},{yDivision:h,barHeight:y,zeroW:g})):s.drawVerticalBoxPaths(e(e({},x),{},{xDivision:n,barWidth:w,zeroH:d})),p=c.y,u=c.x,a>0&&b.push(u+w/2),f.push(p),c.pathTo.forEach((function(e,n){var h=!s.isBoxPlot&&s.candlestickOptions.wick.useFillColor?c.color[n]:r.globals.stroke.colors[i],d=l.fillPath({seriesNumber:v,dataPointIndex:a,color:c.color[n],value:t[i][a]});s.renderSeries({realIndex:v,pathFill:d,lineFill:h,j:a,i:i,pathFrom:c.pathFrom,pathTo:e,strokeWidth:o,elSeries:m,x:u,y:p,series:t,barHeight:y,barWidth:w,elDataLabelsWrap:S,visibleSeries:s.visibleI,type:r.config.chart.type})}))},L=0;Lb.c&&(d=!1);var w=Math.min(b.o,b.c),k=Math.max(b.o,b.c),A=b.m;n.globals.isXNumeric&&(i=(n.globals.seriesX[x][c]-n.globals.minX)/this.xRatio-s/2);var S=i+s*this.visibleI;void 0===this.series[h][c]||null===this.series[h][c]?(w=r,k=r):(w=r-w/f,k=r-k/f,v=r-b.h/f,y=r-b.l/f,A=r-b.m/f);var C=l.move(S,r),L=l.move(S+s/2,w);return n.globals.previousPaths.length>0&&(L=this.getPreviousPath(x,c,!0)),C=this.isBoxPlot?[l.move(S,w)+l.line(S+s/2,w)+l.line(S+s/2,v)+l.line(S+s/4,v)+l.line(S+s-s/4,v)+l.line(S+s/2,v)+l.line(S+s/2,w)+l.line(S+s,w)+l.line(S+s,A)+l.line(S,A)+l.line(S,w+o/2),l.move(S,A)+l.line(S+s,A)+l.line(S+s,k)+l.line(S+s/2,k)+l.line(S+s/2,y)+l.line(S+s-s/4,y)+l.line(S+s/4,y)+l.line(S+s/2,y)+l.line(S+s/2,k)+l.line(S,k)+l.line(S,A)+"z"]:[l.move(S,k)+l.line(S+s/2,k)+l.line(S+s/2,v)+l.line(S+s/2,k)+l.line(S+s,k)+l.line(S+s,w)+l.line(S+s/2,w)+l.line(S+s/2,y)+l.line(S+s/2,w)+l.line(S,w)+l.line(S,k-o/2)],L+=l.move(S,w),n.globals.isXNumeric||(i+=a),{pathTo:C,pathFrom:L,x:i,y:k,barXPosition:S,color:this.isBoxPlot?p:d?[g]:[u]}}},{key:"drawHorizontalBoxPaths",value:function(t){var e=t.indexes;t.x;var i=t.y,a=t.yDivision,s=t.barHeight,r=t.zeroW,o=t.strokeWidth,n=this.w,l=new m(this.ctx),h=e.i,c=e.j,d=this.boxOptions.colors.lower;this.isBoxPlot&&(d=[this.boxOptions.colors.lower,this.boxOptions.colors.upper]);var g=this.invertedYRatio,u=e.realIndex,p=this.getOHLCValue(u,c),f=r,x=r,b=Math.min(p.o,p.c),v=Math.max(p.o,p.c),y=p.m;n.globals.isXNumeric&&(i=(n.globals.seriesX[u][c]-n.globals.minX)/this.invertedXRatio-s/2);var w=i+s*this.visibleI;void 0===this.series[h][c]||null===this.series[h][c]?(b=r,v=r):(b=r+b/g,v=r+v/g,f=r+p.h/g,x=r+p.l/g,y=r+p.m/g);var k=l.move(r,w),A=l.move(b,w+s/2);return n.globals.previousPaths.length>0&&(A=this.getPreviousPath(u,c,!0)),k=[l.move(b,w)+l.line(b,w+s/2)+l.line(f,w+s/2)+l.line(f,w+s/2-s/4)+l.line(f,w+s/2+s/4)+l.line(f,w+s/2)+l.line(b,w+s/2)+l.line(b,w+s)+l.line(y,w+s)+l.line(y,w)+l.line(b+o/2,w),l.move(y,w)+l.line(y,w+s)+l.line(v,w+s)+l.line(v,w+s/2)+l.line(x,w+s/2)+l.line(x,w+s-s/4)+l.line(x,w+s/4)+l.line(x,w+s/2)+l.line(v,w+s/2)+l.line(v,w)+l.line(y,w)+"z"],A+=l.move(b,w),n.globals.isXNumeric||(i+=a),{pathTo:k,pathFrom:A,x:v,y:i,barYPosition:w,color:d}}},{key:"getOHLCValue",value:function(t,e){var i=this.w;return{o:this.isBoxPlot?i.globals.seriesCandleH[t][e]:i.globals.seriesCandleO[t][e],h:this.isBoxPlot?i.globals.seriesCandleO[t][e]:i.globals.seriesCandleH[t][e],m:i.globals.seriesCandleM[t][e],l:this.isBoxPlot?i.globals.seriesCandleC[t][e]:i.globals.seriesCandleL[t][e],c:this.isBoxPlot?i.globals.seriesCandleL[t][e]:i.globals.seriesCandleC[t][e]}}}]),s}(yt),At=function(){function t(e){a(this,t),this.ctx=e,this.w=e.w}return r(t,[{key:"checkColorRange",value:function(){var t=this.w,e=!1,i=t.config.plotOptions[t.config.chart.type];return i.colorScale.ranges.length>0&&i.colorScale.ranges.map((function(t,i){t.from<=0&&(e=!0)})),e}},{key:"getShadeColor",value:function(t,e,i,a){var s=this.w,r=1,o=s.config.plotOptions[t].shadeIntensity,n=this.determineColor(t,e,i);s.globals.hasNegs||a?r=s.config.plotOptions[t].reverseNegativeShade?n.percent<0?n.percent/100*(1.25*o):(1-n.percent/100)*(1.25*o):n.percent<=0?1-(1+n.percent/100)*o:(1-n.percent/100)*o:(r=1-n.percent/100,"treemap"===t&&(r=(1-n.percent/100)*(1.25*o)));var l=n.color,h=new x;return s.config.plotOptions[t].enableShades&&(l="dark"===this.w.config.theme.mode?x.hexToRgba(h.shadeColor(-1*r,n.color),s.config.fill.opacity):x.hexToRgba(h.shadeColor(r,n.color),s.config.fill.opacity)),{color:l,colorProps:n}}},{key:"determineColor",value:function(t,e,i){var a=this.w,s=a.globals.series[e][i],r=a.config.plotOptions[t],o=r.colorScale.inverse?i:e;r.distributed&&"treemap"===a.config.chart.type&&(o=i);var n=a.globals.colors[o],l=null,h=Math.min.apply(Math,u(a.globals.series[e])),c=Math.max.apply(Math,u(a.globals.series[e]));r.distributed||"heatmap"!==t||(h=a.globals.minY,c=a.globals.maxY),void 0!==r.colorScale.min&&(h=r.colorScale.mina.globals.maxY?r.colorScale.max:a.globals.maxY);var d=Math.abs(c)+Math.abs(h),g=100*s/(0===d?d-1e-6:d);r.colorScale.ranges.length>0&&r.colorScale.ranges.map((function(t,e){if(s>=t.from&&s<=t.to){n=t.color,l=t.foreColor?t.foreColor:null,h=t.from,c=t.to;var i=Math.abs(c)+Math.abs(h);g=100*s/(0===i?i-1e-6:i)}}));return{color:n,foreColor:l,percent:g}}},{key:"calculateDataLabels",value:function(t){var e=t.text,i=t.x,a=t.y,s=t.i,r=t.j,o=t.colorProps,n=t.fontSize,l=this.w.config.dataLabels,h=new m(this.ctx),c=new N(this.ctx),d=null;if(l.enabled){d=h.group({class:"apexcharts-data-labels"});var g=l.offsetX,u=l.offsetY,p=i+g,f=a+parseFloat(l.style.fontSize)/3+u;c.plotDataLabelsText({x:p,y:f,text:e,i:s,j:r,color:o.foreColor,parent:d,fontSize:n,dataLabelsConfig:l})}return d}},{key:"addListeners",value:function(t){var e=new m(this.ctx);t.node.addEventListener("mouseenter",e.pathMouseEnter.bind(this,t)),t.node.addEventListener("mouseleave",e.pathMouseLeave.bind(this,t)),t.node.addEventListener("mousedown",e.pathMouseDown.bind(this,t))}}]),t}(),St=function(){function t(e,i){a(this,t),this.ctx=e,this.w=e.w,this.xRatio=i.xRatio,this.yRatio=i.yRatio,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.helpers=new At(e),this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.show?this.w.config.stroke.width:0}return r(t,[{key:"draw",value:function(t){var e=this.w,i=new m(this.ctx),a=i.group({class:"apexcharts-heatmap"});a.attr("clip-path","url(#gridRectMask".concat(e.globals.cuid,")"));var s=e.globals.gridWidth/e.globals.dataPoints,r=e.globals.gridHeight/e.globals.series.length,o=0,n=!1;this.negRange=this.helpers.checkColorRange();var l=t.slice();e.config.yaxis[0].reversed&&(n=!0,l.reverse());for(var h=n?0:l.length-1;n?h=0;n?h++:h--){var c=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:x.escapeString(e.globals.seriesNames[h]),rel:h+1,"data:realIndex":h});if(this.ctx.series.addCollapsedClassToSeries(c,h),e.config.chart.dropShadow.enabled){var d=e.config.chart.dropShadow;new v(this.ctx).dropShadow(c,d,h)}for(var g=0,u=e.config.plotOptions.heatmap.shadeIntensity,p=0;p-1&&this.pieClicked(d),i.config.dataLabels.enabled){var A=w.x,S=w.y,C=100*u/this.fullAngle+"%";if(0!==u&&i.config.plotOptions.pie.dataLabels.minAngleToShowLabelthis.fullAngle?e.endAngle=e.endAngle-(a+o):a+o=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(h=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(h)>this.fullAngle&&(h-=this.fullAngle);var c=Math.PI*(h-90)/180,d=i.centerX+r*Math.cos(l),g=i.centerY+r*Math.sin(l),u=i.centerX+r*Math.cos(c),p=i.centerY+r*Math.sin(c),f=x.polarToCartesian(i.centerX,i.centerY,i.donutSize,h),b=x.polarToCartesian(i.centerX,i.centerY,i.donutSize,n),v=s>180?1:0,y=["M",d,g,"A",r,r,0,v,1,u,p];return e="donut"===i.chartType?[].concat(y,["L",f.x,f.y,"A",i.donutSize,i.donutSize,0,v,0,b.x,b.y,"L",d,g,"z"]).join(" "):"pie"===i.chartType||"polarArea"===i.chartType?[].concat(y,["L",i.centerX,i.centerY,"L",d,g]).join(" "):[].concat(y).join(" "),o.roundPathCorners(e,2*this.strokeWidth)}},{key:"drawPolarElements",value:function(t){var e=this.w,i=new _(this.ctx),a=new m(this.ctx),s=new Ct(this.ctx),r=a.group(),o=a.group(),n=i.niceScale(0,Math.ceil(this.maxY),0),l=n.result.reverse(),h=n.result.length;this.maxY=n.niceMax;for(var c=e.globals.radialSize,d=c/(h-1),g=0;g1&&t.total.show&&(s=t.total.color);var o=r.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),n=r.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,t.value.formatter)(i,r),a||"function"!=typeof t.total.formatter||(i=t.total.formatter(r));var l=e===t.total.label;e=t.name.formatter(e,l,r),null!==o&&(o.textContent=e),null!==n&&(n.textContent=i),null!==o&&(o.style.fill=s)}},{key:"printDataLabelsInner",value:function(t,e){var i=this.w,a=t.getAttribute("data:value"),s=i.globals.seriesNames[parseInt(t.parentNode.getAttribute("rel"),10)-1];i.globals.series.length>1&&this.printInnerLabels(e,s,a,t);var r=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");null!==r&&(r.style.opacity=1)}},{key:"drawSpokes",value:function(t){var e=this,i=this.w,a=new m(this.ctx),s=i.config.plotOptions.polarArea.spokes;if(0!==s.strokeWidth){for(var r=[],o=360/i.globals.series.length,n=0;n1)o&&!e.total.showAlways?l({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(e,e.total.label,e.total.formatter(s));else if(l({makeSliceOut:!1,printLabel:!0}),!o)if(s.globals.selectedDataPoints.length&&s.globals.series.length>1)if(s.globals.selectedDataPoints[0].length>0){var h=s.globals.selectedDataPoints[0],c=s.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(h));this.printDataLabelsInner(c,e)}else r&&s.globals.selectedDataPoints.length&&0===s.globals.selectedDataPoints[0].length&&(r.style.opacity=0);else r&&s.globals.series.length>1&&(r.style.opacity=0)}}]),t}(),Pt=function(){function t(e){a(this,t),this.ctx=e,this.w=e.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var i=this.w;this.graphics=new m(this.ctx),this.lineColorArr=void 0!==i.globals.stroke.colors?i.globals.stroke.colors:i.globals.colors,this.defaultSize=i.globals.svgHeight0&&(f=i.getPreviousPath(n));for(var b=0;b=10?t.x>0?(i="start",a+=10):t.x<0&&(i="end",a-=10):i="middle",Math.abs(t.y)>=e-10&&(t.y<0?s-=10:t.y>0&&(s+=10)),{textAnchor:i,newX:a,newY:s}}},{key:"getPreviousPath",value:function(t){for(var e=this.w,i=null,a=0;a0&&parseInt(s.realIndex,10)===parseInt(t,10)&&void 0!==e.globals.previousPaths[a].paths[0]&&(i=e.globals.previousPaths[a].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.dataPointsLen;t=t||[],e=e||[];for(var a=[],s=0;s=360&&(g=360-Math.abs(this.startAngle)-.1);var u=i.drawPath({d:"",stroke:c,strokeWidth:o*parseInt(h.strokeWidth,10)/100,fill:"none",strokeOpacity:h.opacity,classes:"apexcharts-radialbar-area"});if(h.dropShadow.enabled){var p=h.dropShadow;s.dropShadow(u,p)}l.add(u),u.attr("id","apexcharts-radialbarTrack-"+n),this.animatePaths(u,{centerX:t.centerX,centerY:t.centerY,endAngle:g,startAngle:d,size:t.size,i:n,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:e.globals.easing})}return a}},{key:"drawArcs",value:function(t){var e=this.w,i=new m(this.ctx),a=new H(this.ctx),s=new v(this.ctx),r=i.group(),o=this.getStrokeWidth(t);t.size=t.size-o/2;var n=e.config.plotOptions.radialBar.hollow.background,l=t.size-o*t.series.length-this.margin*t.series.length-o*parseInt(e.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,h=l-e.config.plotOptions.radialBar.hollow.margin;void 0!==e.config.plotOptions.radialBar.hollow.image&&(n=this.drawHollowImage(t,r,l,n));var c=this.drawHollow({size:h,centerX:t.centerX,centerY:t.centerY,fill:n||"transparent"});if(e.config.plotOptions.radialBar.hollow.dropShadow.enabled){var d=e.config.plotOptions.radialBar.hollow.dropShadow;s.dropShadow(c,d)}var g=1;!this.radialDataLabels.total.show&&e.globals.series.length>1&&(g=0);var u=null;this.radialDataLabels.show&&(u=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:l,centerX:t.centerX,centerY:t.centerY,opacity:g})),"back"===e.config.plotOptions.radialBar.hollow.position&&(r.add(c),u&&r.add(u));var p=!1;e.config.plotOptions.radialBar.inverseOrder&&(p=!0);for(var f=p?t.series.length-1:0;p?f>=0:f100?100:t.series[f])/100,S=Math.round(this.totalAngle*A)+this.startAngle,C=void 0;e.globals.dataChanged&&(k=this.startAngle,C=Math.round(this.totalAngle*x.negToZero(e.globals.previousPaths[f])/100)+k),Math.abs(S)+Math.abs(w)>=360&&(S-=.01),Math.abs(C)+Math.abs(k)>=360&&(C-=.01);var L=S-w,P=Array.isArray(e.config.stroke.dashArray)?e.config.stroke.dashArray[f]:e.config.stroke.dashArray,M=i.drawPath({d:"",stroke:y,strokeWidth:o,fill:"none",fillOpacity:e.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+f,strokeDashArray:P});if(m.setAttrs(M.node,{"data:angle":L,"data:value":t.series[f]}),e.config.chart.dropShadow.enabled){var I=e.config.chart.dropShadow;s.dropShadow(M,I,f)}if(s.setSelectionFilter(M,0,f),this.addListeners(M,this.radialDataLabels),b.add(M),M.attr({index:0,j:f}),this.barLabels.enabled){var T=x.polarToCartesian(t.centerX,t.centerY,t.size,w),z=this.barLabels.formatter(e.globals.seriesNames[f],{seriesIndex:f,w:e}),X=["apexcharts-radialbar-label"];this.barLabels.onClick||X.push("apexcharts-no-click");var E=this.barLabels.useSeriesColors?e.globals.colors[f]:e.config.chart.foreColor;E||(E=e.config.chart.foreColor);var Y=T.x-this.barLabels.margin,F=T.y,R=i.drawText({x:Y,y:F,text:z,textAnchor:"end",dominantBaseline:"middle",fontFamily:this.barLabels.fontFamily,fontWeight:this.barLabels.fontWeight,fontSize:this.barLabels.fontSize,foreColor:E,cssClass:X.join(" ")});R.on("click",this.onBarLabelClick),R.attr({rel:f+1}),0!==w&&R.attr({"transform-origin":"".concat(Y," ").concat(F),transform:"rotate(".concat(w," 0 0)")}),b.add(R)}var D=0;!this.initialAnim||e.globals.resized||e.globals.dataChanged||(D=e.config.chart.animations.speed),e.globals.dataChanged&&(D=e.config.chart.animations.dynamicAnimation.speed),this.animDur=D/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur),this.animatePaths(M,{centerX:t.centerX,centerY:t.centerY,endAngle:S,startAngle:w,prevEndAngle:C,prevStartAngle:k,size:t.size,i:f,totalItems:2,animBeginArr:this.animBeginArr,dur:D,shouldSetPrevPaths:!0,easing:e.globals.easing})}return{g:r,elHollow:c,dataLabels:u}}},{key:"drawHollow",value:function(t){var e=new m(this.ctx).drawCircle(2*t.size);return e.attr({class:"apexcharts-radialbar-hollow",cx:t.centerX,cy:t.centerY,r:t.size,fill:t.fill}),e}},{key:"drawHollowImage",value:function(t,e,i,a){var s=this.w,r=new H(this.ctx),o=x.randomId(),n=s.config.plotOptions.radialBar.hollow.image;if(s.config.plotOptions.radialBar.hollow.imageClipped)r.clippedImgArea({width:i,height:i,image:n,patternID:"pattern".concat(s.globals.cuid).concat(o)}),a="url(#pattern".concat(s.globals.cuid).concat(o,")");else{var l=s.config.plotOptions.radialBar.hollow.imageWidth,h=s.config.plotOptions.radialBar.hollow.imageHeight;if(void 0===l&&void 0===h){var c=s.globals.dom.Paper.image(n).loaded((function(e){this.move(t.centerX-e.width/2+s.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-e.height/2+s.config.plotOptions.radialBar.hollow.imageOffsetY)}));e.add(c)}else{var d=s.globals.dom.Paper.image(n).loaded((function(e){this.move(t.centerX-l/2+s.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-h/2+s.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(l,h)}));e.add(d)}}return a}},{key:"getStrokeWidth",value:function(t){var e=this.w;return t.size*(100-parseInt(e.config.plotOptions.radialBar.hollow.size,10))/100/(t.series.length+1)-this.margin}},{key:"onBarLabelClick",value:function(t){var e=parseInt(t.target.getAttribute("rel"),10)-1,i=this.barLabels.onClick,a=this.w;i&&i(a.globals.seriesNames[e],{w:a,seriesIndex:e})}}]),i}(Lt),It=function(t){n(s,t);var i=d(s);function s(){return a(this,s),i.apply(this,arguments)}return r(s,[{key:"draw",value:function(t,i){var a=this.w,s=new m(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=t,this.seriesRangeStart=a.globals.seriesRangeStart,this.seriesRangeEnd=a.globals.seriesRangeEnd,this.barHelpers.initVariables(t);for(var r=s.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),n=0;n0&&(this.visibleI=this.visibleI+1);var b=0,v=0,y=0;this.yRatio.length>1&&(this.yaxisIndex=a.globals.seriesYAxisReverseMap[p][0],y=p);var w=this.barHelpers.initialPositions();u=w.y,d=w.zeroW,g=w.x,v=w.barWidth,b=w.barHeight,l=w.xDivision,h=w.yDivision,c=w.zeroH;for(var k=s.group({class:"apexcharts-datalabels","data:realIndex":p}),A=s.group({class:"apexcharts-rangebar-goals-markers"}),S=0;S0}));return this.isHorizontal?(a=g.config.plotOptions.bar.rangeBarGroupRows?r+h*b:r+n*this.visibleI+h*b,v>-1&&!g.config.plotOptions.bar.rangeBarOverlap&&(u=g.globals.seriesRange[e][v].overlaps).indexOf(p)>-1&&(a=(n=d.barHeight/u.length)*this.visibleI+h*(100-parseInt(this.barOptions.barHeight,10))/100/2+n*(this.visibleI+u.indexOf(p))+h*b)):(b>-1&&(s=g.config.plotOptions.bar.rangeBarGroupRows?o+c*b:o+l*this.visibleI+c*b),v>-1&&!g.config.plotOptions.bar.rangeBarOverlap&&(u=g.globals.seriesRange[e][v].overlaps).indexOf(p)>-1&&(s=(l=d.barWidth/u.length)*this.visibleI+c*(100-parseInt(this.barOptions.barWidth,10))/100/2+l*(this.visibleI+u.indexOf(p))+c*b)),{barYPosition:a,barXPosition:s,barHeight:n,barWidth:l}}},{key:"drawRangeColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=t.xDivision,s=t.barWidth,r=t.barXPosition,o=t.zeroH,n=this.w,l=e.i,h=e.j,c=this.yRatio[e.translationsIndex],d=e.realIndex,g=this.getRangeValue(d,h),u=Math.min(g.start,g.end),p=Math.max(g.start,g.end);void 0===this.series[l][h]||null===this.series[l][h]?u=o:(u=o-u/c,p=o-p/c);var f=Math.abs(p-u),x=this.barHelpers.getColumnPaths({barXPosition:r,barWidth:s,y1:u,y2:p,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:e.realIndex,i:d,j:h,w:n});if(n.globals.isXNumeric){var b=this.getBarXForNumericXAxis({x:i,j:h,realIndex:d,barWidth:s});i=b.x,r=b.barXPosition}else i+=a;return{pathTo:x.pathTo,pathFrom:x.pathFrom,barHeight:f,x:i,y:p,goalY:this.barHelpers.getGoalValues("y",null,o,l,h,e.translationsIndex),barXPosition:r}}},{key:"drawRangeBarPaths",value:function(t){var e=t.indexes,i=t.y,a=t.y1,s=t.y2,r=t.yDivision,o=t.barHeight,n=t.barYPosition,l=t.zeroW,h=this.w,c=l+a/this.invertedYRatio,d=l+s/this.invertedYRatio,g=Math.abs(d-c),u=this.barHelpers.getBarpaths({barYPosition:n,barHeight:o,x1:c,x2:d,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:e.realIndex,realIndex:e.realIndex,j:e.j,w:h});return h.globals.isXNumeric||(i+=r),{pathTo:u.pathTo,pathFrom:u.pathFrom,barWidth:g,x:d,goalX:this.barHelpers.getGoalValues("x",l,null,e.realIndex,e.j),y:i}}},{key:"getRangeValue",value:function(t,e){var i=this.w;return{start:i.globals.seriesRangeStart[t][e],end:i.globals.seriesRangeEnd[t][e]}}}]),s}(yt),Tt=function(){function t(e){a(this,t),this.w=e.w,this.lineCtx=e}return r(t,[{key:"sameValueSeriesFix",value:function(t,e){var i=this.w;if(("gradient"===i.config.fill.type||"gradient"===i.config.fill.type[t])&&new y(this.lineCtx.ctx,i).seriesHaveSameValues(t)){var a=e[t].slice();a[a.length-1]=a[a.length-1]+1e-6,e[t]=a}return e}},{key:"calculatePoints",value:function(t){var e=t.series,i=t.realIndex,a=t.x,s=t.y,r=t.i,o=t.j,n=t.prevY,l=this.w,h=[],c=[];if(0===o){var d=this.lineCtx.categoryAxisCorrection+l.config.markers.offsetX;l.globals.isXNumeric&&(d=(l.globals.seriesX[i][0]-l.globals.minX)/this.lineCtx.xRatio+l.config.markers.offsetX),h.push(d),c.push(x.isNumber(e[r][0])?n+l.config.markers.offsetY:null),h.push(a+l.config.markers.offsetX),c.push(x.isNumber(e[r][o+1])?s+l.config.markers.offsetY:null)}else h.push(a+l.config.markers.offsetX),c.push(x.isNumber(e[r][o+1])?s+l.config.markers.offsetY:null);return{x:h,y:c}}},{key:"checkPreviousPaths",value:function(t){for(var e=t.pathFromLine,i=t.pathFromArea,a=t.realIndex,s=this.w,r=0;r0&&parseInt(o.realIndex,10)===parseInt(a,10)&&("line"===o.type?(this.lineCtx.appendPathFrom=!1,e=s.globals.previousPaths[r].paths[0].d):"area"===o.type&&(this.lineCtx.appendPathFrom=!1,i=s.globals.previousPaths[r].paths[0].d,s.config.stroke.show&&s.globals.previousPaths[r].paths[1]&&(e=s.globals.previousPaths[r].paths[1].d)))}return{pathFromLine:e,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(t){var e,i,a=t.i,s=t.series,r=t.prevY,o=t.lineYPosition,n=t.translationsIndex,l=this.w,h=l.config.chart.stacked&&!l.globals.comboCharts||l.config.chart.stacked&&l.globals.comboCharts&&(!this.w.config.chart.stackOnlyBar||"bar"===(null===(e=this.w.config.series[a])||void 0===e?void 0:e.type));if(void 0!==(null===(i=s[a])||void 0===i?void 0:i[0]))r=(o=h&&a>0?this.lineCtx.prevSeriesY[a-1][0]:this.lineCtx.zeroY)-s[a][0]/this.lineCtx.yRatio[n]+2*(this.lineCtx.isReversed?s[a][0]/this.lineCtx.yRatio[n]:0);else if(h&&a>0&&void 0===s[a][0])for(var c=a-1;c>=0;c--)if(null!==s[c][0]&&void 0!==s[c][0]){r=o=this.lineCtx.prevSeriesY[c][0];break}return{prevY:r,lineYPosition:o}}}]),t}(),zt=function(t){for(var e,i,a,s,r=function(t){for(var e=[],i=t[0],a=t[1],s=e[0]=Yt(i,a),r=1,o=t.length-1;r9&&(s=3*a/Math.sqrt(s),r[l]=s*e,r[l+1]=s*i);for(var h=0;h<=o;h++)s=(t[Math.min(o,h+1)][0]-t[Math.max(0,h-1)][0])/(6*(1+r[h]*r[h])),n.push([s||0,r[h]*s||0]);return n},Xt=function(t){for(var e="",i=0;i4?(e+="C".concat(a[0],", ").concat(a[1]),e+=", ".concat(a[2],", ").concat(a[3]),e+=", ".concat(a[4],", ").concat(a[5])):s>2&&(e+="S".concat(a[0],", ").concat(a[1]),e+=", ".concat(a[2],", ").concat(a[3]))}return e},Et=function(t){var e=zt(t),i=t[1],a=t[0],s=[],r=e[1],o=e[0];s.push(a,[a[0]+o[0],a[1]+o[1],i[0]-r[0],i[1]-r[1],i[0],i[1]]);for(var n=2,l=e.length;n1?u:0;this._initSerieVariables(t,g,u);var f=[],x=[],b=[],v=o.globals.padHorizontal+this.categoryAxisCorrection;this.ctx.series.addCollapsedClassToSeries(this.elSeries,u),o.globals.isXNumeric&&o.globals.seriesX.length>0&&(v=(o.globals.seriesX[u][0]-o.globals.minX)/this.xRatio),b.push(v);var w,k=v,A=void 0,S=k,C=this.zeroY,L=this.zeroY;C=this.lineHelpers.determineFirstPrevY({i:g,series:t,prevY:C,lineYPosition:0,translationsIndex:p}).prevY,"monotonCubic"===o.config.stroke.curve&&null===t[g][0]?f.push(null):f.push(C),w=C;"rangeArea"===l&&(A=L=this.lineHelpers.determineFirstPrevY({i:g,series:s,prevY:L,lineYPosition:0,translationsIndex:p}).prevY,x.push(L));var P={type:l,series:t,realIndex:u,translationsIndex:p,i:g,x:v,y:1,pX:k,pY:w,pathsFrom:this._calculatePathsFrom({type:l,series:t,i:g,realIndex:u,prevX:S,prevY:C,prevY2:L}),linePaths:[],areaPaths:[],seriesIndex:a,lineYPosition:0,xArrj:b,yArrj:f,y2Arrj:x,seriesRangeEnd:s},M=this._iterateOverDataPoints(e(e({},P),{},{iterations:"rangeArea"===l?t[g].length-1:void 0,isRangeStart:!0}));if("rangeArea"===l){var I=this._calculatePathsFrom({series:s,i:g,realIndex:u,prevX:S,prevY:L}),T=this._iterateOverDataPoints(e(e({},P),{},{series:s,pY:A,pathsFrom:I,iterations:s[g].length-1,isRangeStart:!1}));M.linePaths[0]=T.linePath+M.linePath,M.pathFromLine=T.pathFromLine+M.pathFromLine}this._handlePaths({type:l,realIndex:u,i:g,paths:M}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),d.push(this.elSeries)}if(void 0!==(null===(r=o.config.series[0])||void 0===r?void 0:r.zIndex)&&d.sort((function(t,e){return Number(t.node.getAttribute("zIndex"))-Number(e.node.getAttribute("zIndex"))})),o.config.chart.stacked)for(var z=d.length;z>0;z--)h.add(d[z-1]);else for(var X=0;X1&&(this.yaxisIndex=a.globals.seriesYAxisReverseMap[i],r=i),this.isReversed=a.config.yaxis[this.yaxisIndex]&&a.config.yaxis[this.yaxisIndex].reversed,this.zeroY=a.globals.gridHeight-this.baseLineY[r]-(this.isReversed?a.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[r]:0),this.areaBottomY=this.zeroY,(this.zeroY>a.globals.gridHeight||"end"===a.config.plotOptions.area.fillTo)&&(this.areaBottomY=a.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=s.group({class:"apexcharts-series",zIndex:void 0!==a.config.series[i].zIndex?a.config.series[i].zIndex:i,seriesName:x.escapeString(a.globals.seriesNames[i])}),this.elPointsMain=s.group({class:"apexcharts-series-markers-wrap","data:realIndex":i}),this.elDataLabelsWrap=s.group({class:"apexcharts-datalabels","data:realIndex":i});var o=t[e].length===a.globals.dataPoints;this.elSeries.attr({"data:longestSeries":o,rel:e+1,"data:realIndex":i}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(t){var e,i,a,s,r=t.type,o=t.series,n=t.i,l=t.realIndex,h=t.prevX,c=t.prevY,d=t.prevY2,g=this.w,u=new m(this.ctx);if(null===o[n][0]){for(var p=0;p0){var f=this.lineHelpers.checkPreviousPaths({pathFromLine:a,pathFromArea:s,realIndex:l});a=f.pathFromLine,s=f.pathFromArea}return{prevX:h,prevY:c,linePath:e,areaPath:i,pathFromLine:a,pathFromArea:s}}},{key:"_handlePaths",value:function(t){var i=t.type,a=t.realIndex,s=t.i,r=t.paths,o=this.w,n=new m(this.ctx),l=new H(this.ctx);this.prevSeriesY.push(r.yArrj),o.globals.seriesXvalues[a]=r.xArrj,o.globals.seriesYvalues[a]=r.yArrj;var h=o.config.forecastDataPoints;if(h.count>0&&"rangeArea"!==i){var c=o.globals.seriesXvalues[a][o.globals.seriesXvalues[a].length-h.count-1],d=n.drawRect(c,0,o.globals.gridWidth,o.globals.gridHeight,0);o.globals.dom.elForecastMask.appendChild(d.node);var g=n.drawRect(0,0,c,o.globals.gridHeight,0);o.globals.dom.elNonForecastMask.appendChild(g.node)}this.pointsChart||o.globals.delayedElements.push({el:this.elPointsMain.node,index:a});var u={i:s,realIndex:a,animationDelay:s,initialSpeed:o.config.chart.animations.speed,dataChangeSpeed:o.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(i)};if("area"===i)for(var p=l.fillPath({seriesNumber:a}),f=0;f0&&"rangeArea"!==i){var S=n.renderPaths(k);S.node.setAttribute("stroke-dasharray",h.dashArray),h.strokeWidth&&S.node.setAttribute("stroke-width",h.strokeWidth),this.elSeries.add(S),S.attr("clip-path","url(#forecastMask".concat(o.globals.cuid,")")),A.attr("clip-path","url(#nonForecastMask".concat(o.globals.cuid,")"))}}}}},{key:"_iterateOverDataPoints",value:function(t){var e,i=this,a=t.type,s=t.series,r=t.iterations,o=t.realIndex,n=t.translationsIndex,l=t.i,h=t.x,c=t.y,d=t.pX,g=t.pY,u=t.pathsFrom,p=t.linePaths,f=t.areaPaths,b=t.seriesIndex,v=t.lineYPosition,y=t.xArrj,w=t.yArrj,k=t.y2Arrj,A=t.isRangeStart,S=t.seriesRangeEnd,C=this.w,L=new m(this.ctx),P=this.yRatio,M=u.prevY,I=u.linePath,T=u.areaPath,z=u.pathFromLine,X=u.pathFromArea,E=x.isNumber(C.globals.minYArr[o])?C.globals.minYArr[o]:C.globals.minY;r||(r=C.globals.dataPoints>1?C.globals.dataPoints-1:C.globals.dataPoints);for(var Y=function(t,e){return e-t/P[n]+2*(i.isReversed?t/P[n]:0)},F=c,R=C.config.chart.stacked&&!C.globals.comboCharts||C.config.chart.stacked&&C.globals.comboCharts&&(!this.w.config.chart.stackOnlyBar||"bar"===(null===(e=this.w.config.series[o])||void 0===e?void 0:e.type)),H=0;H0&&C.globals.collapsedSeries.length-1){e--;break}return e>=0?e:0}(l-1)][H+1]}else v=this.zeroY;else v=this.zeroY;D?c=Y(E,v):(c=Y(s[l][H+1],v),"rangeArea"===a&&(F=Y(S[l][H+1],v))),y.push(h),D&&"smooth"===C.config.stroke.curve?w.push(null):w.push(c),k.push(F);var N=this.lineHelpers.calculatePoints({series:s,x:h,y:c,realIndex:o,i:l,j:H,prevY:M}),W=this._createPaths({type:a,series:s,i:l,realIndex:o,j:H,x:h,y:c,y2:F,xArrj:y,yArrj:w,y2Arrj:k,pX:d,pY:g,linePath:I,areaPath:T,linePaths:p,areaPaths:f,seriesIndex:b,isRangeStart:A});f=W.areaPaths,p=W.linePaths,d=W.pX,g=W.pY,T=W.areaPath,I=W.linePath,!this.appendPathFrom||"monotoneCubic"===C.config.stroke.curve&&"rangeArea"===a||(z+=L.line(h,this.zeroY),X+=L.line(h,this.zeroY)),this.handleNullDataPoints(s,N,l,H,o),this._handleMarkersAndLabels({type:a,pointsPos:N,i:l,j:H,realIndex:o,isRangeStart:A})}return{yArrj:w,xArrj:y,pathFromArea:X,areaPaths:f,pathFromLine:z,linePaths:p,linePath:I,areaPath:T}}},{key:"_handleMarkersAndLabels",value:function(t){var e=t.type,i=t.pointsPos,a=t.isRangeStart,s=t.i,r=t.j,o=t.realIndex,n=this.w,l=new N(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,r,{realIndex:o,pointsPos:i,zRatio:this.zRatio,elParent:this.elPointsMain});else{n.globals.series[s].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var h=this.markers.plotChartMarkers(i,o,r+1);null!==h&&this.elPointsMain.add(h)}var c=l.drawDataLabel({type:e,isRangeStart:a,pos:i,i:o,j:r+1});null!==c&&this.elDataLabelsWrap.add(c)}},{key:"_createPaths",value:function(t){var e=t.type,i=t.series,a=t.i,s=t.realIndex,r=t.j,o=t.x,n=t.y,l=t.xArrj,h=t.yArrj,c=t.y2,d=t.y2Arrj,g=t.pX,u=t.pY,p=t.linePath,f=t.areaPath,x=t.linePaths,b=t.areaPaths,v=t.seriesIndex,y=t.isRangeStart,w=this.w,k=new m(this.ctx),A=w.config.stroke.curve,S=this.areaBottomY;if(Array.isArray(w.config.stroke.curve)&&(A=Array.isArray(v)?w.config.stroke.curve[v[a]]:w.config.stroke.curve[a]),"rangeArea"===e&&(w.globals.hasNullValues||w.config.forecastDataPoints.count>0)&&"monotoneCubic"===A&&(A="straight"),"monotoneCubic"===A){var C="rangeArea"===e?l.length===w.globals.dataPoints:r===i[a].length-2,L=l.map((function(t,e){return[l[e],h[e]]})).filter((function(t){return null!==t[1]}));if(C&&L.length>1){var P=Et(L);if(p+=Xt(P),null===i[a][0]?f=p:f+=Xt(P),"rangeArea"===e&&y){p+=k.line(l[l.length-1],d[d.length-1]);var M=l.slice().reverse(),I=d.slice().reverse(),T=M.map((function(t,e){return[M[e],I[e]]})),z=Et(T);f=p+=Xt(z)}else f+=k.line(L[L.length-1][0],S)+k.line(L[0][0],S)+k.move(L[0][0],L[0][1])+"z";x.push(p),b.push(f)}}else if("smooth"===A){var X=.35*(o-g);w.globals.hasNullValues?(null!==i[a][r]&&(null!==i[a][r+1]?(p=k.move(g,u)+k.curve(g+X,u,o-X,n,o+1,n),f=k.move(g+1,u)+k.curve(g+X,u,o-X,n,o+1,n)+k.line(o,S)+k.line(g,S)+"z"):(p=k.move(g,u),f=k.move(g,u)+"z")),x.push(p),b.push(f)):(p+=k.curve(g+X,u,o-X,n,o,n),f+=k.curve(g+X,u,o-X,n,o,n)),g=o,u=n,r===i[a].length-2&&(f=f+k.curve(g,u,o,n,o,S)+k.move(o,n)+"z","rangeArea"===e&&y?p=p+k.curve(g,u,o,n,o,c)+k.move(o,c)+"z":w.globals.hasNullValues||(x.push(p),b.push(f)))}else{if(null===i[a][r+1]){p+=k.move(o,n);var E=w.globals.isXNumeric?(w.globals.seriesX[s][r]-w.globals.minX)/this.xRatio:o-this.xDivision;f=f+k.line(E,S)+k.move(o,n)+"z"}null===i[a][r]&&(p+=k.move(o,n),f+=k.move(o,S)),"stepline"===A?(p=p+k.line(o,null,"H")+k.line(null,n,"V"),f=f+k.line(o,null,"H")+k.line(null,n,"V")):"linestep"===A?(p=p+k.line(null,n,"V")+k.line(o,null,"H"),f=f+k.line(null,n,"V")+k.line(o,null,"H")):"straight"===A&&(p+=k.line(o,n),f+=k.line(o,n)),r===i[a].length-2&&(f=f+k.line(o,S)+k.move(o,n)+"z","rangeArea"===e&&y?p=p+k.line(o,c)+k.move(o,c)+"z":(x.push(p),b.push(f)))}return{linePaths:x,areaPaths:b,pX:g,pY:u,linePath:p,areaPath:f}}},{key:"handleNullDataPoints",value:function(t,e,i,a,s){var r=this.w;if(null===t[i][a]&&r.config.markers.showNullDataPoints||1===t[i].length){var o=this.markers.plotChartMarkers(e,s,a+1,this.strokeWidth-r.config.markers.strokeWidth/2,!0);null!==o&&this.elPointsMain.add(o)}}}]),t}();window.TreemapSquared={},window.TreemapSquared.generate=function(){function t(e,i,a,s){this.xoffset=e,this.yoffset=i,this.height=s,this.width=a,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(t){var e,i=[],a=this.xoffset,s=this.yoffset,o=r(t)/this.height,n=r(t)/this.width;if(this.width>=this.height)for(e=0;e=this.height){var a=e/this.height,s=this.width-a;i=new t(this.xoffset+a,this.yoffset,s,this.height)}else{var r=e/this.width,o=this.height-r;i=new t(this.xoffset,this.yoffset+r,this.width,o)}return i}}function e(e,a,s,o,n){o=void 0===o?0:o,n=void 0===n?0:n;var l=i(function(t,e){var i,a=[],s=e/r(t);for(i=0;i=o}(e,l=t[0],n)?(e.push(l),i(t.slice(1),e,s,o)):(h=s.cutArea(r(e),o),o.push(s.getCoordinates(e)),i(t,[],h,o)),o;o.push(s.getCoordinates(e))}function a(t,e){var i=Math.min.apply(Math,t),a=Math.max.apply(Math,t),s=r(t);return Math.max(Math.pow(e,2)*a/Math.pow(s,2),Math.pow(s,2)/(Math.pow(e,2)*i))}function s(t){return t&&t.constructor===Array}function r(t){var e,i=0;for(e=0;er-a&&l.width<=o-s){var h=n.rotateAroundCenter(t.node);t.node.setAttribute("transform","rotate(-90 ".concat(h.x," ").concat(h.y,") translate(").concat(l.height/3,")"))}}},{key:"truncateLabels",value:function(t,e,i,a,s,r){var o=new m(this.ctx),n=o.getTextRects(t,e).width+this.w.config.stroke.width+5>s-i&&r-a>s-i?r-a:s-i,l=o.getTextBasedOnMaxWidth({text:t,maxWidth:n,fontSize:e});return t.length!==l.length&&n/e<5?"":l}},{key:"animateTreemap",value:function(t,e,i,a){var s=new b(this.ctx);s.animateRect(t,{x:e.x,y:e.y,width:e.width,height:e.height},{x:i.x,y:i.y,width:i.width,height:i.height},a,(function(){s.animationCompleted(t)}))}}]),t}(),Ot=86400,Nt=function(){function t(e){a(this,t),this.ctx=e,this.w=e.w,this.timeScaleArray=[],this.utc=this.w.config.xaxis.labels.datetimeUTC}return r(t,[{key:"calculateTimeScaleTicks",value:function(t,i){var a=this,s=this.w;if(s.globals.allSeriesCollapsed)return s.globals.labels=[],s.globals.timescaleLabels=[],[];var r=new A(this.ctx),o=(i-t)/864e5;this.determineInterval(o),s.globals.disableZoomIn=!1,s.globals.disableZoomOut=!1,o<.00011574074074074075?s.globals.disableZoomIn=!0:o>5e4&&(s.globals.disableZoomOut=!0);var n=r.getTimeUnitsfromTimestamp(t,i,this.utc),l=s.globals.gridWidth/o,h=l/24,c=h/60,d=c/60,g=Math.floor(24*o),u=Math.floor(1440*o),p=Math.floor(o*Ot),f=Math.floor(o),x=Math.floor(o/30),b=Math.floor(o/365),v={minMillisecond:n.minMillisecond,minSecond:n.minSecond,minMinute:n.minMinute,minHour:n.minHour,minDate:n.minDate,minMonth:n.minMonth,minYear:n.minYear},m={firstVal:v,currentMillisecond:v.minMillisecond,currentSecond:v.minSecond,currentMinute:v.minMinute,currentHour:v.minHour,currentMonthDate:v.minDate,currentDate:v.minDate,currentMonth:v.minMonth,currentYear:v.minYear,daysWidthOnXAxis:l,hoursWidthOnXAxis:h,minutesWidthOnXAxis:c,secondsWidthOnXAxis:d,numberOfSeconds:p,numberOfMinutes:u,numberOfHours:g,numberOfDays:f,numberOfMonths:x,numberOfYears:b};switch(this.tickInterval){case"years":this.generateYearScale(m);break;case"months":case"half_year":this.generateMonthScale(m);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(m);break;case"hours":this.generateHourScale(m);break;case"minutes_fives":case"minutes":this.generateMinuteScale(m);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(m)}var y=this.timeScaleArray.map((function(t){var i={position:t.position,unit:t.unit,year:t.year,day:t.day?t.day:1,hour:t.hour?t.hour:0,month:t.month+1};return"month"===t.unit?e(e({},i),{},{day:1,value:t.value+1}):"day"===t.unit||"hour"===t.unit?e(e({},i),{},{value:t.value}):"minute"===t.unit?e(e({},i),{},{value:t.value,minute:t.value}):"second"===t.unit?e(e({},i),{},{value:t.value,minute:t.minute,second:t.second}):t}));return y.filter((function(t){var e=1,i=Math.ceil(s.globals.gridWidth/120),r=t.value;void 0!==s.config.xaxis.tickAmount&&(i=s.config.xaxis.tickAmount),y.length>i&&(e=Math.floor(y.length/i));var o=!1,n=!1;switch(a.tickInterval){case"years":"year"===t.unit&&(o=!0);break;case"half_year":e=7,"year"===t.unit&&(o=!0);break;case"months":e=1,"year"===t.unit&&(o=!0);break;case"months_fortnight":e=15,"year"!==t.unit&&"month"!==t.unit||(o=!0),30===r&&(n=!0);break;case"months_days":e=10,"month"===t.unit&&(o=!0),30===r&&(n=!0);break;case"week_days":e=8,"month"===t.unit&&(o=!0);break;case"days":e=1,"month"===t.unit&&(o=!0);break;case"hours":"day"===t.unit&&(o=!0);break;case"minutes_fives":case"seconds_fives":r%5!=0&&(n=!0);break;case"seconds_tens":r%10!=0&&(n=!0)}if("hours"===a.tickInterval||"minutes_fives"===a.tickInterval||"seconds_tens"===a.tickInterval||"seconds_fives"===a.tickInterval){if(!n)return!0}else if((r%e==0||o)&&!n)return!0}))}},{key:"recalcDimensionsBasedOnFormat",value:function(t,e){var i=this.w,a=this.formatDates(t),s=this.removeOverlappingTS(a);i.globals.timescaleLabels=s.slice(),new ot(this.ctx).plotCoords()}},{key:"determineInterval",value:function(t){var e=24*t,i=60*e;switch(!0){case t/365>5:this.tickInterval="years";break;case t>800:this.tickInterval="half_year";break;case t>180:this.tickInterval="months";break;case t>90:this.tickInterval="months_fortnight";break;case t>60:this.tickInterval="months_days";break;case t>30:this.tickInterval="week_days";break;case t>2:this.tickInterval="days";break;case e>2.4:this.tickInterval="hours";break;case i>15:this.tickInterval="minutes_fives";break;case i>5:this.tickInterval="minutes";break;case i>1:this.tickInterval="seconds_tens";break;case 60*i>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(t){var e=t.firstVal,i=t.currentMonth,a=t.currentYear,s=t.daysWidthOnXAxis,r=t.numberOfYears,o=e.minYear,n=0,l=new A(this.ctx),h="year";if(e.minDate>1||e.minMonth>0){var c=l.determineRemainingDaysOfYear(e.minYear,e.minMonth,e.minDate);n=(l.determineDaysOfYear(e.minYear)-c+1)*s,o=e.minYear+1,this.timeScaleArray.push({position:n,value:o,unit:h,year:o,month:x.monthMod(i+1)})}else 1===e.minDate&&0===e.minMonth&&this.timeScaleArray.push({position:n,value:o,unit:h,year:a,month:x.monthMod(i+1)});for(var d=o,g=n,u=0;u1){l=(h.determineDaysOfMonths(a+1,e.minYear)-i+1)*r,n=x.monthMod(a+1);var g=s+d,u=x.monthMod(n),p=n;0===n&&(c="year",p=g,u=1,g+=d+=1),this.timeScaleArray.push({position:l,value:p,unit:c,year:g,month:u})}else this.timeScaleArray.push({position:l,value:n,unit:c,year:s,month:x.monthMod(a)});for(var f=n+1,b=l,v=0,m=1;vo.determineDaysOfMonths(e+1,i)?(h=1,n="month",g=e+=1,e):e},d=(24-e.minHour)*s,g=l,u=c(h,i,a);0===e.minHour&&1===e.minDate?(d=0,g=x.monthMod(e.minMonth),n="month",h=e.minDate):1!==e.minDate&&0===e.minHour&&0===e.minMinute&&(d=0,l=e.minDate,g=l,u=c(h=l,i,a)),this.timeScaleArray.push({position:d,value:g,unit:n,year:this._getYear(a,u,0),month:x.monthMod(u),day:h});for(var p=d,f=0;fn.determineDaysOfMonths(e+1,s)&&(f=1,e+=1),{month:e,date:f}},c=function(t,e){return t>n.determineDaysOfMonths(e+1,s)?e+=1:e},d=60-(e.minMinute+e.minSecond/60),g=d*r,u=e.minHour+1,p=u;60===d&&(g=0,p=u=e.minHour);var f=i;p>=24&&(p=0,f+=1,l="day");var b=h(f,a).month;b=c(f,b),this.timeScaleArray.push({position:g,value:u,unit:l,day:f,hour:p,year:s,month:x.monthMod(b)}),p++;for(var v=g,m=0;m=24)p=0,l="day",b=h(f+=1,b).month,b=c(f,b);var y=this._getYear(s,b,0);v=60*r+v;var w=0===p?f:p;this.timeScaleArray.push({position:v,value:w,unit:l,hour:p,day:f,year:y,month:x.monthMod(b)}),p++}}},{key:"generateMinuteScale",value:function(t){for(var e=t.currentMillisecond,i=t.currentSecond,a=t.currentMinute,s=t.currentHour,r=t.currentDate,o=t.currentMonth,n=t.currentYear,l=t.minutesWidthOnXAxis,h=t.secondsWidthOnXAxis,c=t.numberOfMinutes,d=a+1,g=r,u=o,p=n,f=s,b=(60-i-e/1e3)*h,v=0;v=60&&(d=0,24===(f+=1)&&(f=0)),this.timeScaleArray.push({position:b,value:d,unit:"minute",hour:f,minute:d,day:g,year:this._getYear(p,u,0),month:x.monthMod(u)}),b+=l,d++}},{key:"generateSecondScale",value:function(t){for(var e=t.currentMillisecond,i=t.currentSecond,a=t.currentMinute,s=t.currentHour,r=t.currentDate,o=t.currentMonth,n=t.currentYear,l=t.secondsWidthOnXAxis,h=t.numberOfSeconds,c=i+1,d=a,g=r,u=o,p=n,f=s,b=(1e3-e)/1e3*l,v=0;v=60&&(c=0,++d>=60&&(d=0,24===++f&&(f=0))),this.timeScaleArray.push({position:b,value:c,unit:"second",hour:f,minute:d,second:c,day:g,year:this._getYear(p,u,0),month:x.monthMod(u)}),b+=l,c++}},{key:"createRawDateString",value:function(t,e){var i=t.year;return 0===t.month&&(t.month=1),i+="-"+("0"+t.month.toString()).slice(-2),"day"===t.unit?i+="day"===t.unit?"-"+("0"+e).slice(-2):"-01":i+="-"+("0"+(t.day?t.day:"1")).slice(-2),"hour"===t.unit?i+="hour"===t.unit?"T"+("0"+e).slice(-2):"T00":i+="T"+("0"+(t.hour?t.hour:"0")).slice(-2),"minute"===t.unit?i+=":"+("0"+e).slice(-2):i+=":"+(t.minute?("0"+t.minute).slice(-2):"00"),"second"===t.unit?i+=":"+("0"+e).slice(-2):i+=":00",this.utc&&(i+=".000Z"),i}},{key:"formatDates",value:function(t){var e=this,i=this.w;return t.map((function(t){var a=t.value.toString(),s=new A(e.ctx),r=e.createRawDateString(t,a),o=s.getDate(s.parseDate(r));if(e.utc||(o=s.getDate(s.parseDateWithTimezone(r))),void 0===i.config.xaxis.labels.format){var n="dd MMM",l=i.config.xaxis.labels.datetimeFormatter;"year"===t.unit&&(n=l.year),"month"===t.unit&&(n=l.month),"day"===t.unit&&(n=l.day),"hour"===t.unit&&(n=l.hour),"minute"===t.unit&&(n=l.minute),"second"===t.unit&&(n=l.second),a=s.formatDate(o,n)}else a=s.formatDate(o,i.config.xaxis.labels.format);return{dateString:r,position:t.position,value:a,unit:t.unit,year:t.year,month:t.month}}))}},{key:"removeOverlappingTS",value:function(t){var e,i=this,a=new m(this.ctx),s=!1;t.length>0&&t[0].value&&t.every((function(e){return e.value.length===t[0].value.length}))&&(s=!0,e=a.getTextRects(t[0].value).width);var r=0,o=t.map((function(o,n){if(n>0&&i.w.config.xaxis.labels.hideOverlappingLabels){var l=s?e:a.getTextRects(t[r].value).width,h=t[r].position;return o.position>h+l+10?(r=n,o):null}return o}));return o=o.filter((function(t){return null!==t}))}},{key:"_getYear",value:function(t,e,i){return t+Math.floor(e/12)+i}}]),t}(),Wt=function(){function t(e,i){a(this,t),this.ctx=i,this.w=i.w,this.el=e}return r(t,[{key:"setupElements",value:function(){var t=this.w.globals,e=this.w.config,i=e.chart.type;t.axisCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble","radar","heatmap","treemap"].indexOf(i)>-1,t.xyCharts=["line","area","bar","rangeBar","rangeArea","candlestick","boxPlot","scatter","bubble"].indexOf(i)>-1,t.isBarHorizontal=("bar"===e.chart.type||"rangeBar"===e.chart.type||"boxPlot"===e.chart.type)&&e.plotOptions.bar.horizontal,t.chartClass=".apexcharts"+t.chartID,t.dom.baseEl=this.el,t.dom.elWrap=document.createElement("div"),m.setAttrs(t.dom.elWrap,{id:t.chartClass.substring(1),class:"apexcharts-canvas "+t.chartClass.substring(1)}),this.el.appendChild(t.dom.elWrap),t.dom.Paper=new window.SVG.Doc(t.dom.elWrap),t.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(e.chart.offsetX,", ").concat(e.chart.offsetY,")")}),t.dom.Paper.node.style.background="dark"!==e.theme.mode||e.chart.background?e.chart.background:"rgba(0, 0, 0, 0.8)",this.setSVGDimensions(),t.dom.elLegendForeign=document.createElementNS(t.SVGNS,"foreignObject"),m.setAttrs(t.dom.elLegendForeign,{x:0,y:0,width:t.svgWidth,height:t.svgHeight}),t.dom.elLegendWrap=document.createElement("div"),t.dom.elLegendWrap.classList.add("apexcharts-legend"),t.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),t.dom.elLegendForeign.appendChild(t.dom.elLegendWrap),t.dom.Paper.node.appendChild(t.dom.elLegendForeign),t.dom.elGraphical=t.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),t.dom.elDefs=t.dom.Paper.defs(),t.dom.Paper.add(t.dom.elGraphical),t.dom.elGraphical.add(t.dom.elDefs)}},{key:"plotChartType",value:function(t,e){var i=this.w,a=i.config,s=i.globals,r={series:[],i:[]},o={series:[],i:[]},n={series:[],i:[]},l={series:[],i:[]},h={series:[],i:[]},c={series:[],i:[]},d={series:[],i:[]},g={series:[],i:[]},u={series:[],seriesRangeEnd:[],i:[]},p=void 0!==a.chart.type?a.chart.type:"line",f=0;s.series.map((function(e,x){void 0!==t[x].type?"column"===t[x].type||"bar"===t[x].type?(s.series.length>1&&a.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),h.series.push(e),h.i.push(x),"bar"!==p&&f++,i.globals.columnSeries=h.series):"area"===t[x].type?(o.series.push(e),o.i.push(x),p!==t[x].type&&f++):"line"===t[x].type?(r.series.push(e),r.i.push(x),p!==t[x].type&&f++):"scatter"===t[x].type?(n.series.push(e),n.i.push(x)):"bubble"===t[x].type?(l.series.push(e),l.i.push(x),p!==t[x].type&&f++):"candlestick"===t[x].type?(c.series.push(e),c.i.push(x),p!==t[x].type&&f++):"boxPlot"===t[x].type?(d.series.push(e),d.i.push(x),p!==t[x].type&&f++):"rangeBar"===t[x].type?(g.series.push(e),g.i.push(x),p!==t[x].type&&f++):"rangeArea"===t[x].type?(u.series.push(s.seriesRangeStart[x]),u.seriesRangeEnd.push(s.seriesRangeEnd[x]),u.i.push(x),p!==t[x].type&&f++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble/candlestick/boxPlot/rangeBar/rangeArea"):(r.series.push(e),r.i.push(x))})),s.comboCharts||(s.comboCharts=f>0);var x=new Ft(this.ctx,e),b=new kt(this.ctx,e);this.ctx.pie=new Lt(this.ctx);var v=new Mt(this.ctx);this.ctx.rangeBar=new It(this.ctx,e);var m=new Pt(this.ctx),y=[];if(s.comboCharts){if(o.series.length>0&&y.push(x.draw(o.series,"area",o.i)),h.series.length>0)if(i.config.chart.stacked){var w=new wt(this.ctx,e);y.push(w.draw(h.series,h.i))}else this.ctx.bar=new yt(this.ctx,e),y.push(this.ctx.bar.draw(h.series,h.i));if(u.series.length>0&&y.push(x.draw(u.series,"rangeArea",u.i,u.seriesRangeEnd)),r.series.length>0&&y.push(x.draw(r.series,"line",r.i)),c.series.length>0&&y.push(b.draw(c.series,"candlestick",c.i)),d.series.length>0&&y.push(b.draw(d.series,"boxPlot",d.i)),g.series.length>0&&y.push(this.ctx.rangeBar.draw(g.series,g.i)),n.series.length>0){var k=new Ft(this.ctx,e,!0);y.push(k.draw(n.series,"scatter",n.i))}if(l.series.length>0){var A=new Ft(this.ctx,e,!0);y.push(A.draw(l.series,"bubble",l.i))}}else switch(a.chart.type){case"line":y=x.draw(s.series,"line");break;case"area":y=x.draw(s.series,"area");break;case"bar":if(a.chart.stacked)y=new wt(this.ctx,e).draw(s.series);else this.ctx.bar=new yt(this.ctx,e),y=this.ctx.bar.draw(s.series);break;case"candlestick":y=new kt(this.ctx,e).draw(s.series,"candlestick");break;case"boxPlot":y=new kt(this.ctx,e).draw(s.series,a.chart.type);break;case"rangeBar":y=this.ctx.rangeBar.draw(s.series);break;case"rangeArea":y=x.draw(s.seriesRangeStart,"rangeArea",void 0,s.seriesRangeEnd);break;case"heatmap":y=new St(this.ctx,e).draw(s.series);break;case"treemap":y=new Dt(this.ctx,e).draw(s.series);break;case"pie":case"donut":case"polarArea":y=this.ctx.pie.draw(s.series);break;case"radialBar":y=v.draw(s.series);break;case"radar":y=m.draw(s.series);break;default:y=x.draw(s.series)}return y}},{key:"setSVGDimensions",value:function(){var t=this.w.globals,e=this.w.config;t.svgWidth=e.chart.width,t.svgHeight=e.chart.height;var i=x.getDimensions(this.el),a=e.chart.width.toString().split(/[0-9]+/g).pop();"%"===a?x.isNumber(i[0])&&(0===i[0].width&&(i=x.getDimensions(this.el.parentNode)),t.svgWidth=i[0]*parseInt(e.chart.width,10)/100):"px"!==a&&""!==a||(t.svgWidth=parseInt(e.chart.width,10));var s=e.chart.height.toString().split(/[0-9]+/g).pop();if("auto"!==t.svgHeight&&""!==t.svgHeight)if("%"===s){var r=x.getDimensions(this.el.parentNode);t.svgHeight=r[1]*parseInt(e.chart.height,10)/100}else t.svgHeight=parseInt(e.chart.height,10);else t.axisCharts?t.svgHeight=t.svgWidth/1.61:t.svgHeight=t.svgWidth/1.2;if(t.svgWidth<0&&(t.svgWidth=0),t.svgHeight<0&&(t.svgHeight=0),m.setAttrs(t.dom.Paper.node,{width:t.svgWidth,height:t.svgHeight}),"%"!==s){var o=e.chart.sparkline.enabled?0:t.axisCharts?e.chart.parentHeightOffset:0;t.dom.Paper.node.parentNode.parentNode.style.minHeight=t.svgHeight+o+"px"}t.dom.elWrap.style.width=t.svgWidth+"px",t.dom.elWrap.style.height=t.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var t=this.w.globals,e=t.translateY,i={transform:"translate("+t.translateX+", "+e+")"};m.setAttrs(t.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var t=this.w,e=t.globals,i=0,a=t.config.chart.sparkline.enabled?1:15;a+=t.config.grid.padding.bottom,"top"!==t.config.legend.position&&"bottom"!==t.config.legend.position||!t.config.legend.show||t.config.legend.floating||(i=new lt(this.ctx).legendHelpers.getLegendBBox().clwh+10);var s=t.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),r=2.05*t.globals.radialSize;if(s&&!t.config.chart.sparkline.enabled&&0!==t.config.plotOptions.radialBar.startAngle){var o=x.getBoundingClientRect(s);r=o.bottom;var n=o.bottom-o.top;r=Math.max(2.05*t.globals.radialSize,n)}var l=r+e.translateY+i+a;e.dom.elLegendForeign&&e.dom.elLegendForeign.setAttribute("height",l),t.config.chart.height&&String(t.config.chart.height).indexOf("%")>0||(e.dom.elWrap.style.height=l+"px",m.setAttrs(e.dom.Paper.node,{height:l}),e.dom.Paper.node.parentNode.parentNode.style.minHeight=l+"px")}},{key:"coreCalculations",value:function(){new U(this.ctx).init()}},{key:"resetGlobals",value:function(){var t=this,e=function(){return t.w.config.series.map((function(t){return[]}))},i=new F,a=this.w.globals;i.initGlobalVars(a),a.seriesXvalues=e(),a.seriesYvalues=e()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var t=null,e=this.w;if(e.globals.axisCharts){if("back"===e.config.xaxis.crosshairs.position)new Q(this.ctx).drawXCrosshairs();if("back"===e.config.yaxis[0].crosshairs.position)new Q(this.ctx).drawYCrosshairs();if("datetime"===e.config.xaxis.type&&void 0===e.config.xaxis.labels.formatter){this.ctx.timeScale=new Nt(this.ctx);var i=[];isFinite(e.globals.minX)&&isFinite(e.globals.maxX)&&!e.globals.isBarHorizontal?i=this.ctx.timeScale.calculateTimeScaleTicks(e.globals.minX,e.globals.maxX):e.globals.isBarHorizontal&&(i=this.ctx.timeScale.calculateTimeScaleTicks(e.globals.minY,e.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(i)}t=new y(this.ctx).getCalculatedRatios()}return t}},{key:"updateSourceChart",value:function(t){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:t.w.globals.minX,max:t.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var t=this,e=this.w;if(e.config.chart.brush.enabled&&"function"!=typeof e.config.chart.events.selection){var i=Array.isArray(e.config.chart.brush.targets)?e.config.chart.brush.targets:[e.config.chart.brush.target];i.forEach((function(e){var i=ApexCharts.getChartByID(e);i.w.globals.brushSource=t.ctx,"function"!=typeof i.w.config.chart.events.zoomed&&(i.w.config.chart.events.zoomed=function(){t.updateSourceChart(i)}),"function"!=typeof i.w.config.chart.events.scrolled&&(i.w.config.chart.events.scrolled=function(){t.updateSourceChart(i)})})),e.config.chart.events.selection=function(t,e){i.forEach((function(t){ApexCharts.getChartByID(t).ctx.updateHelpers._updateOptions({xaxis:{min:e.xaxis.min,max:e.xaxis.max}},!1,!1,!1,!1)}))}}}}]),t}(),Bt=function(){function t(e){a(this,t),this.ctx=e,this.w=e.w}return r(t,[{key:"_updateOptions",value:function(t){var e=this,a=arguments.length>1&&void 0!==arguments[1]&&arguments[1],s=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],r=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],o=arguments.length>4&&void 0!==arguments[4]&&arguments[4];return new Promise((function(n){var l=[e.ctx];r&&(l=e.ctx.getSyncedCharts()),e.ctx.w.globals.isExecCalled&&(l=[e.ctx],e.ctx.w.globals.isExecCalled=!1),l.forEach((function(r,h){var c=r.w;if(c.globals.shouldAnimate=s,a||(c.globals.resized=!0,c.globals.dataChanged=!0,s&&r.series.getPreviousPaths()),t&&"object"===i(t)&&(r.config=new Y(t),t=y.extendArrayProps(r.config,t,c),r.w.globals.chartID!==e.ctx.w.globals.chartID&&delete t.series,c.config=x.extend(c.config,t),o&&(c.globals.lastXAxis=t.xaxis?x.clone(t.xaxis):[],c.globals.lastYAxis=t.yaxis?x.clone(t.yaxis):[],c.globals.initialConfig=x.extend({},c.config),c.globals.initialSeries=x.clone(c.config.series),t.series))){for(var d=0;d2&&void 0!==arguments[2]&&arguments[2];return new Promise((function(s){var r,o=i.w;return o.globals.shouldAnimate=e,o.globals.dataChanged=!0,e&&i.ctx.series.getPreviousPaths(),o.globals.axisCharts?(0===(r=t.map((function(t,e){return i._extendSeries(t,e)}))).length&&(r=[{data:[]}]),o.config.series=r):o.config.series=t.slice(),a&&(o.globals.initialConfig.series=x.clone(o.config.series),o.globals.initialSeries=x.clone(o.config.series)),i.ctx.update().then((function(){s(i.ctx)}))}))}},{key:"_extendSeries",value:function(t,i){var a=this.w,s=a.config.series[i];return e(e({},a.config.series[i]),{},{name:t.name?t.name:null==s?void 0:s.name,color:t.color?t.color:null==s?void 0:s.color,type:t.type?t.type:null==s?void 0:s.type,group:t.group?t.group:null==s?void 0:s.group,data:t.data?t.data:null==s?void 0:s.data,zIndex:void 0!==t.zIndex?t.zIndex:i})}},{key:"toggleDataPointSelection",value:function(t,e){var i=this.w,a=null,s=".apexcharts-series[data\\:realIndex='".concat(t,"']");return i.globals.axisCharts?a=i.globals.dom.Paper.select("".concat(s," path[j='").concat(e,"'], ").concat(s," circle[j='").concat(e,"'], ").concat(s," rect[j='").concat(e,"']")).members[0]:void 0===e&&(a=i.globals.dom.Paper.select("".concat(s," path[j='").concat(t,"']")).members[0],"pie"!==i.config.chart.type&&"polarArea"!==i.config.chart.type&&"donut"!==i.config.chart.type||this.ctx.pie.pieClicked(t)),a?(new m(this.ctx).pathMouseDown(a,null),a.node?a.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(t){var e=this.w;if(["min","max"].forEach((function(i){void 0!==t.xaxis[i]&&(e.config.xaxis[i]=t.xaxis[i],e.globals.lastXAxis[i]=t.xaxis[i])})),t.xaxis.categories&&t.xaxis.categories.length&&(e.config.xaxis.categories=t.xaxis.categories),e.config.xaxis.convertedCatToNumeric){var i=new E(t);t=i.convertCatToNumericXaxis(t,this.ctx)}return t}},{key:"forceYAxisUpdate",value:function(t){return t.chart&&t.chart.stacked&&"100%"===t.chart.stackType&&(Array.isArray(t.yaxis)?t.yaxis.forEach((function(e,i){t.yaxis[i].min=0,t.yaxis[i].max=100})):(t.yaxis.min=0,t.yaxis.max=100)),t}},{key:"revertDefaultAxisMinMax",value:function(t){var e=this,i=this.w,a=i.globals.lastXAxis,s=i.globals.lastYAxis;t&&t.xaxis&&(a=t.xaxis),t&&t.yaxis&&(s=t.yaxis),i.config.xaxis.min=a.min,i.config.xaxis.max=a.max;var r=function(t){void 0!==s[t]&&(i.config.yaxis[t].min=s[t].min,i.config.yaxis[t].max=s[t].max)};i.config.yaxis.map((function(t,a){i.globals.zoomed||void 0!==s[a]?r(a):void 0!==e.ctx.opts.yaxis[a]&&(t.min=e.ctx.opts.yaxis[a].min,t.max=e.ctx.opts.yaxis[a].max)}))}}]),t}();Rt="undefined"!=typeof window?window:void 0,Ht=function(t,e){var a=(void 0!==this?this:t).SVG=function(t){if(a.supported)return t=new a.Doc(t),a.parser.draw||a.prepare(),t};if(a.ns="http://www.w3.org/2000/svg",a.xmlns="http://www.w3.org/2000/xmlns/",a.xlink="http://www.w3.org/1999/xlink",a.svgjs="http://svgjs.dev",a.supported=!0,!a.supported)return!1;a.did=1e3,a.eid=function(t){return"Svgjs"+d(t)+a.did++},a.create=function(t){var i=e.createElementNS(this.ns,t);return i.setAttribute("id",this.eid(t)),i},a.extend=function(){var t,e;e=(t=[].slice.call(arguments)).pop();for(var i=t.length-1;i>=0;i--)if(t[i])for(var s in e)t[i].prototype[s]=e[s];a.Set&&a.Set.inherit&&a.Set.inherit()},a.invent=function(t){var e="function"==typeof t.create?t.create:function(){this.constructor.call(this,a.create(t.create))};return t.inherit&&(e.prototype=new t.inherit),t.extend&&a.extend(e,t.extend),t.construct&&a.extend(t.parent||a.Container,t.construct),e},a.adopt=function(e){return e?e.instance?e.instance:((i="svg"==e.nodeName?e.parentNode instanceof t.SVGElement?new a.Nested:new a.Doc:"linearGradient"==e.nodeName?new a.Gradient("linear"):"radialGradient"==e.nodeName?new a.Gradient("radial"):a[d(e.nodeName)]?new(a[d(e.nodeName)]):new a.Element(e)).type=e.nodeName,i.node=e,e.instance=i,i instanceof a.Doc&&i.namespace().defs(),i.setData(JSON.parse(e.getAttribute("svgjs:data"))||{}),i):null;var i},a.prepare=function(){var t=e.getElementsByTagName("body")[0],i=(t?new a.Doc(t):a.adopt(e.documentElement).nested()).size(2,0);a.parser={body:t||e.documentElement,draw:i.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:i.polyline().node,path:i.path().node,native:a.create("svg")}},a.parser={native:a.create("svg")},e.addEventListener("DOMContentLoaded",(function(){a.parser.draw||a.prepare()}),!1),a.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},a.utils={map:function(t,e){for(var i=t.length,a=[],s=0;s1?1:t,new a.Color({r:~~(this.r+(this.destination.r-this.r)*t),g:~~(this.g+(this.destination.g-this.g)*t),b:~~(this.b+(this.destination.b-this.b)*t)})):this}}),a.Color.test=function(t){return t+="",a.regex.isHex.test(t)||a.regex.isRgb.test(t)},a.Color.isRgb=function(t){return t&&"number"==typeof t.r&&"number"==typeof t.g&&"number"==typeof t.b},a.Color.isColor=function(t){return a.Color.isRgb(t)||a.Color.test(t)},a.Array=function(t,e){0==(t=(t||[]).valueOf()).length&&e&&(t=e.valueOf()),this.value=this.parse(t)},a.extend(a.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(t){return t=t.valueOf(),Array.isArray(t)?t:this.split(t)}}),a.PointArray=function(t,e){a.Array.call(this,t,e||[[0,0]])},a.PointArray.prototype=new a.Array,a.PointArray.prototype.constructor=a.PointArray;for(var s={M:function(t,e,i){return e.x=i.x=t[0],e.y=i.y=t[1],["M",e.x,e.y]},L:function(t,e){return e.x=t[0],e.y=t[1],["L",t[0],t[1]]},H:function(t,e){return e.x=t[0],["H",t[0]]},V:function(t,e){return e.y=t[0],["V",t[0]]},C:function(t,e){return e.x=t[4],e.y=t[5],["C",t[0],t[1],t[2],t[3],t[4],t[5]]},Q:function(t,e){return e.x=t[2],e.y=t[3],["Q",t[0],t[1],t[2],t[3]]},S:function(t,e){return e.x=t[2],e.y=t[3],["S",t[0],t[1],t[2],t[3]]},Z:function(t,e,i){return e.x=i.x,e.y=i.y,["Z"]}},r="mlhvqtcsaz".split(""),o=0,n=r.length;ol);return r},bbox:function(){return a.parser.draw||a.prepare(),a.parser.path.setAttribute("d",this.toString()),a.parser.path.getBBox()}}),a.Number=a.invent({create:function(t,e){this.value=0,this.unit=e||"","number"==typeof t?this.value=isNaN(t)?0:isFinite(t)?t:t<0?-34e37:34e37:"string"==typeof t?(e=t.match(a.regex.numberAndUnit))&&(this.value=parseFloat(e[1]),"%"==e[5]?this.value/=100:"s"==e[5]&&(this.value*=1e3),this.unit=e[5]):t instanceof a.Number&&(this.value=t.valueOf(),this.unit=t.unit)},extend:{toString:function(){return("%"==this.unit?~~(1e8*this.value)/1e6:"s"==this.unit?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(t){return t=new a.Number(t),new a.Number(this+t,this.unit||t.unit)},minus:function(t){return t=new a.Number(t),new a.Number(this-t,this.unit||t.unit)},times:function(t){return t=new a.Number(t),new a.Number(this*t,this.unit||t.unit)},divide:function(t){return t=new a.Number(t),new a.Number(this/t,this.unit||t.unit)},to:function(t){var e=new a.Number(this);return"string"==typeof t&&(e.unit=t),e},morph:function(t){return this.destination=new a.Number(t),t.relative&&(this.destination.value+=this.value),this},at:function(t){return this.destination?new a.Number(this.destination).minus(this).times(t).plus(this):this}}}),a.Element=a.invent({create:function(t){this._stroke=a.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=t)&&(this.type=t.nodeName,this.node.instance=this,this._stroke=t.getAttribute("stroke")||this._stroke)},extend:{x:function(t){return this.attr("x",t)},y:function(t){return this.attr("y",t)},cx:function(t){return null==t?this.x()+this.width()/2:this.x(t-this.width()/2)},cy:function(t){return null==t?this.y()+this.height()/2:this.y(t-this.height()/2)},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},width:function(t){return this.attr("width",t)},height:function(t){return this.attr("height",t)},size:function(t,e){var i=u(this,t,e);return this.width(new a.Number(i.width)).height(new a.Number(i.height))},clone:function(t){this.writeDataToDom();var e=x(this.node.cloneNode(!0));return t?t.add(e):this.after(e),e},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(t){return this.after(t).remove(),t},addTo:function(t){return t.put(this)},putIn:function(t){return t.add(this)},id:function(t){return this.attr("id",t)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return"none"!=this.style("display")},toString:function(){return this.attr("id")},classes:function(){var t=this.attr("class");return null==t?[]:t.trim().split(a.regex.delimiter)},hasClass:function(t){return-1!=this.classes().indexOf(t)},addClass:function(t){if(!this.hasClass(t)){var e=this.classes();e.push(t),this.attr("class",e.join(" "))}return this},removeClass:function(t){return this.hasClass(t)&&this.attr("class",this.classes().filter((function(e){return e!=t})).join(" ")),this},toggleClass:function(t){return this.hasClass(t)?this.removeClass(t):this.addClass(t)},reference:function(t){return a.get(this.attr(t))},parent:function(e){var i=this;if(!i.node.parentNode)return null;if(i=a.adopt(i.node.parentNode),!e)return i;for(;i&&i.node instanceof t.SVGElement;){if("string"==typeof e?i.matches(e):i instanceof e)return i;if(!i.node.parentNode||"#document"==i.node.parentNode.nodeName)return null;i=a.adopt(i.node.parentNode)}},doc:function(){return this instanceof a.Doc?this:this.parent(a.Doc)},parents:function(t){var e=[],i=this;do{if(!(i=i.parent(t))||!i.node)break;e.push(i)}while(i.parent);return e},matches:function(t){return function(t,e){return(t.matches||t.matchesSelector||t.msMatchesSelector||t.mozMatchesSelector||t.webkitMatchesSelector||t.oMatchesSelector).call(t,e)}(this.node,t)},native:function(){return this.node},svg:function(t){var i=e.createElement("svg");if(!(t&&this instanceof a.Parent))return i.appendChild(t=e.createElement("svg")),this.writeDataToDom(),t.appendChild(this.node.cloneNode(!0)),i.innerHTML.replace(/^